Skip to content

Commit 6117619

Browse files
committed
update docs
1 parent 9053f2e commit 6117619

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

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

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

66
redis-graph provides a small trait with an extension function for the
@@ -13,7 +13,7 @@ configuration and clean-up which starting from v0.4.0 are also supported.
1313
The Graph commands are available in synchronous and asynchronous versions.
1414

1515
The crate is called `redis-graph` and you can depend on it via cargo. You will
16-
also need redis in your dependencies. This version was tested against redis 0.21.0
16+
also need redis in your dependencies. This version was tested against redis 0.23.0
1717
but should run with versions higher than that.
1818

1919
```ini

src/lib.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
//! data types that can be installed as a [redis module](https://oss.redislabs.com/redisgraph).
44
//!Redis graph operations are mostly using two top level Redis commands
55
//!(one for read/write operations and one for read-only operations). In addition
6-
//!to those there are some more maintenance oriented commands for perfomance, configuration and
6+
//!to those there are some more maintenance oriented commands for perfomance, configuration and
77
//!clean-up which starting from v0.4.0 are also supported.
88
//!The Graph commands are available in synchronous and asynchronous versions.
99
//!
1010
//!The crate is called `redis-graph` and you can depend on it via cargo. You will
11-
//!also need redis in your dependencies. This version was tested against redis 0.22.1
11+
//!also need redis in your dependencies. This version was tested against redis 0.23.0
1212
//!but should run with versions higher than that.
1313
//!
1414
//! ```ini
1515
//! [dependencies]
16-
//! redis = "0.22.1"
17-
//! redis-graph = "0.4.3"
16+
//! redis = "0.23.0"
17+
//! redis-graph = "0.4.4"
1818
//! ```
1919
//!
2020
//! Or via git:
@@ -31,7 +31,7 @@
3131
//! ```ini
3232
//! [dependencies]
3333
//! redis = "0.22.1"
34-
//! redis-graph = { version = "0.4.3", features = ['tokio-comp'] }
34+
//! redis-graph = { version = "0.4.4", features = ['tokio-comp'] }
3535
//! ```
3636
//!
3737
//! # Synchronous usage
@@ -42,7 +42,7 @@
4242
//! To also have access to the value extractor traits simply import
4343
//! the whole crate redis_graph::*.
4444
//!
45-
//!
45+
//!
4646
//! ```rust,no_run
4747
//! # fn run() -> redis::RedisResult<()> {
4848
//! use redis::Commands;

0 commit comments

Comments
 (0)