Skip to content

Commit 751321b

Browse files
committed
minor: increment version number in README
1 parent 604d27e commit 751321b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ This repository contains the officially supported MongoDB Rust driver, a client
2929
| Driver Version | Required Rust Version |
3030
|:--------------:|:---------------------:|
3131
| master | 1.43+ |
32+
| 1.1.x | 1.43+ |
3233
| 1.0.x | 1.43+ |
3334
| 0.11.x | 1.43+ |
3435
| 0.10.x | 1.43+ |
@@ -39,7 +40,7 @@ This repository contains the officially supported MongoDB Rust driver, a client
3940
The driver is available on [crates.io](https://crates.io/crates/mongodb). To use the driver in your application, simply add it to your project's `Cargo.toml`.
4041
```toml
4142
[dependencies]
42-
mongodb = "1.0.0"
43+
mongodb = "1.1.0"
4344
```
4445

4546
#### Configuring the async runtime
@@ -48,7 +49,7 @@ The driver supports both of the most popular async runtime crates, namely [`toki
4849
For example, to instruct the driver to work with [`async-std`](https://crates.io/crates/async-std), add the following to your `Cargo.toml`:
4950
```toml
5051
[dependencies.mongodb]
51-
version = "1.0.0"
52+
version = "1.1.0"
5253
default-features = false
5354
features = ["async-std-runtime"]
5455
```
@@ -57,7 +58,7 @@ features = ["async-std-runtime"]
5758
The driver also provides a blocking sync API. To enable this, add the `"sync"` feature to your `Cargo.toml`:
5859
```toml
5960
[dependencies.mongodb]
60-
version = "1.0.0"
61+
version = "1.1.0"
6162
default-features = false
6263
features = ["sync"]
6364
```

0 commit comments

Comments
 (0)