Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
tompro committed Feb 16, 2024
1 parent fd59d9d commit 388d5a7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 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.2"
version = "0.5.3"
authors = ["protom <[email protected]>"]
keywords = ["redis", "database"]
description = "API for Redis time series types."
Expand Down
12 changes: 6 additions & 6 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.2-orange)](https://crates.io/crates/redis_ts)
[![crates.io](https://img.shields.io/badge/crates.io-v0.5.3-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 @@ -10,13 +10,13 @@ a [redis module](https://oss.redislabs.com/redistimeseries). Time
series commands are available as synchronous and asynchronous versions.

The crate is called `redis_ts` and you can depend on it via cargo. You will
also need redis in your dependencies. It has been tested against redis 0.23.0
also need redis in your dependencies. It has been tested against redis 0.24.0
but should work with versions higher than that.

```ini
[dependencies]
redis = "0.23.0"
redis_ts = "0.5.2"
redis = "0.24.0"
redis_ts = "0.5.3"
```

Or via git:
Expand All @@ -30,8 +30,8 @@ With async feature inherited from the [redis](https://docs.rs/redis) crate (eith
```ini
[dependencies]
redis = "0.23.0"
redis_ts = { version = "0.5.2", features = ['tokio-comp'] }
redis = "0.24.0"
redis_ts = { version = "0.5.3", features = ['tokio-comp'] }
```
## Synchronous usage
Expand Down
10 changes: 5 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
//! series commands are available as synchronous and asynchronous versions.
//!
//! The crate is called `redis_ts` and you can depend on it via cargo. You will
//! also need redis in your dependencies. It has been tested against redis 0.23.0
//! also need redis in your dependencies. It has been tested against redis 0.24.0
//! but should work with versions higher than that.
//!
//! ```ini
//! [dependencies]
//! redis = "0.23.0"
//! redis_ts = "0.5.2"
//! redis = "0.24.0"
//! redis_ts = "0.5.3"
//! ```
//!
//! Or via git:
Expand All @@ -25,8 +25,8 @@
//! crate (either: 'async-std-comp' or 'tokio-comp):
//! ```ini
//! [dependencies]
//! redis = "0.23.0"
//! redis_ts = { version = "0.5.2", features = ['tokio-comp'] }
//! redis = "0.24.0"
//! redis_ts = { version = "0.5.3", features = ['tokio-comp'] }
//! ```
//!
//! # Synchronous usage
Expand Down

0 comments on commit 388d5a7

Please sign in to comment.