Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
tompro committed Mar 5, 2023
1 parent e03254c commit 43dc723
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "redis_ts"
version = "0.5.0"
version = "0.5.1"
authors = ["protom <[email protected]>"]
keywords = ["redis", "database"]
description = "API for Redis time series types."
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# redis_ts

[![crates.io](https://img.shields.io/badge/crates.io-v0.5.0-orange)](https://crates.io/crates/redis_ts)
[![crates.io](https://img.shields.io/badge/crates.io-v0.5.1-orange)](https://crates.io/crates/redis_ts)
![Continuous integration](https://github.com/tompro/redis_ts/workflows/Continuous%20integration/badge.svg)

redis_ts provides a small trait with extension functions for the
Expand All @@ -16,7 +16,7 @@ but should work with versions higher than that.
```ini
[dependencies]
redis = "0.22.1"
redis_ts = "0.5.0"
redis_ts = "0.5.1"
```

Or via git:
Expand All @@ -30,7 +30,7 @@ With async feature inherited from the [redis](https://docs.rs/redis) crate (eith
```ini
[dependencies]
redis = "0.22.1"
redis_ts = { version = "0.5.0", features = ['tokio-comp'] }
redis_ts = { version = "0.5.1", features = ['tokio-comp'] }
```

## Synchronous usage
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
//! ```ini
//! [dependencies]
//! redis = "0.22.1"
//! redis_ts = "0.5.0"
//! redis_ts = "0.5.1"
//! ```
//!
//! Or via git:
Expand All @@ -26,7 +26,7 @@
//! ```ini
//! [dependencies]
//! redis = "0.22.1"
//! redis_ts = { version = "0.5.0", features = ['tokio-comp'] }
//! redis_ts = { version = "0.5.1", features = ['tokio-comp'] }
//! ```
//!
//! # Synchronous usage
Expand Down

0 comments on commit 43dc723

Please sign in to comment.