Skip to content

Commit 758f532

Browse files
authored
Merge pull request #14 from tompro/develop
Update to redis 0.22.1
2 parents 59367c3 + e487963 commit 758f532

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redis_ts"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["protom <[email protected]>"]
55
keywords = ["redis", "database"]
66
description = "API for Redis time series types."
@@ -13,17 +13,17 @@ edition = "2018"
1313
exclude = ["docker"]
1414

1515
[dependencies]
16-
redis = { version = "0.21.5", optional = true }
16+
redis = { version = "0.22.1", optional = true }
1717

1818
[features]
1919
default = ['redis']
2020
tokio-comp = ['redis/tokio-comp']
2121
async-std-comp = ['redis/async-std-comp']
2222

2323
[dev-dependencies]
24-
tokio = { version = "1.17.0", features = ["rt"] }
25-
futures = "0.3.21"
26-
async-std = "1.11.0"
24+
tokio = { version = "1", features = ["rt"] }
25+
futures = "0.3.5"
26+
async-std = { version = "1.8.0", features = ["tokio1"] }
2727

2828
[[test]]
2929
name = "test_async_std_commands"

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# redis_ts
22

3-
[![crates.io](https://img.shields.io/badge/crates.io-v0.4.1-orange)](https://crates.io/crates/redis_ts)
3+
[![crates.io](https://img.shields.io/badge/crates.io-v0.4.2-orange)](https://crates.io/crates/redis_ts)
44
![Continuous integration](https://github.com/tompro/redis_ts/workflows/Continuous%20integration/badge.svg)
55

66
redis_ts provides a small trait with extension functions for the
@@ -10,13 +10,13 @@ a [redis module](https://oss.redislabs.com/redistimeseries). Time
1010
series commands are available as synchronous and asynchronous versions.
1111

1212
The crate is called `redis_ts` and you can depend on it via cargo. You will
13-
also need redis in your dependencies. It has been tested agains redis 0.21.0
13+
also need redis in your dependencies. It has been tested agains redis 0.22.1
1414
but should work with versions higher than that.
1515

1616
```ini
1717
[dependencies]
18-
redis = "0.21.0"
19-
redis_ts = "0.4.1"
18+
redis = "0.22.1"
19+
redis_ts = "0.4.2"
2020
```
2121

2222
Or via git:
@@ -29,8 +29,8 @@ but should work with versions higher than that.
2929
With async feature inherited from the [redis](https://docs.rs/redis) crate (either: 'async-std-comp' or 'tokio-comp):
3030
```ini
3131
[dependencies]
32-
redis = "0.21.0"
33-
redis_ts = { version = "0.4.1", features = ['tokio-comp'] }
32+
redis = "0.22.1"
33+
redis_ts = { version = "0.4.2", features = ['tokio-comp'] }
3434
```
3535

3636
## Synchronous usage

src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
//! series commands are available as synchronous and asynchronous versions.
66
//!
77
//! The crate is called `redis_ts` and you can depend on it via cargo. You will
8-
//! also need redis in your dependencies. It has been tested agains redis 0.21.0
8+
//! also need redis in your dependencies. It has been tested agains redis 0.22.1
99
//! but should work with versions higher than that.
1010
//!
1111
//! ```ini
1212
//! [dependencies]
13-
//! redis = "0.21.0"
14-
//! redis_ts = "0.4.1"
13+
//! redis = "0.22.1"
14+
//! redis_ts = "0.4.2"
1515
//! ```
1616
//!
1717
//! Or via git:
@@ -25,8 +25,8 @@
2525
//! crate (either: 'async-std-comp' or 'tokio-comp):
2626
//! ```ini
2727
//! [dependencies]
28-
//! redis = "0.21.0"
29-
//! redis_ts = { version = "0.4.1", features = ['tokio-comp'] }
28+
//! redis = "0.22.1"
29+
//! redis_ts = { version = "0.4.2", features = ['tokio-comp'] }
3030
//! ```
3131
//!
3232
//! # Synchronous usage

0 commit comments

Comments
 (0)