Skip to content

Commit 17d7fc5

Browse files
committed
bump redis library version to ^0.23.0
1 parent 5ebff7a commit 17d7fc5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redis-graph"
3-
version = "0.4.3"
3+
version = "0.4.4"
44
authors = ["tompro <[email protected]>"]
55
keywords = ["redis", "database", "graph"]
66
description = "API for Redis graph database types."
@@ -13,7 +13,7 @@ edition = "2018"
1313
exclude = ["docker"]
1414

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

1818
[features]
1919
default = ['redis']

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ but should run with versions higher than that.
1818

1919
```ini
2020
[dependencies]
21-
redis = "0.22.1"
22-
redis-graph = "0.4.3"
21+
redis = "0.23.0"
22+
redis-graph = "0.4.4"
2323
```
2424

2525
Or via git:
@@ -34,8 +34,8 @@ With async feature inherited from the [redis](https://docs.rs/redis) crate (eith
3434

3535
```ini
3636
[dependencies]
37-
redis = "0.22.1"
38-
redis-graph = { version = "0.4.3", features = ['tokio-comp'] }
37+
redis = "0.23.0"
38+
redis-graph = { version = "0.4.4", features = ['tokio-comp'] }
3939
```
4040

4141
## Synchronous usage

0 commit comments

Comments
 (0)