Skip to content

Commit

Permalink
release v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickfreed committed Apr 6, 2021
1 parent 7e99726 commit 6c8e3a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -8,7 +8,7 @@ repository = "https://github.com/mongodb/mongo-rust-driver"
license = "Apache-2.0"
readme = "README.md"
name = "mongodb"
version = "1.2.0"
version = "1.2.1"

exclude = [
"etc/**",
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -38,7 +38,7 @@ issue. For more information, see https://github.com/rust-lang/rust/issues/75992.
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`.
```toml
[dependencies]
mongodb = "1.2.0"
mongodb = "1.2.1"
```

#### Configuring the async runtime
Expand All @@ -47,7 +47,7 @@ The driver supports both of the most popular async runtime crates, namely [`toki
For example, to instruct the driver to work with [`async-std`](https://crates.io/crates/async-std), add the following to your `Cargo.toml`:
```toml
[dependencies.mongodb]
version = "1.2.0"
version = "1.2.1"
default-features = false
features = ["async-std-runtime"]
```
Expand All @@ -56,7 +56,7 @@ features = ["async-std-runtime"]
The driver also provides a blocking sync API. To enable this, add the `"sync"` feature to your `Cargo.toml`:
```toml
[dependencies.mongodb]
version = "1.2.0"
version = "1.2.1"
default-features = false
features = ["sync"]
```
Expand Down

0 comments on commit 6c8e3a9

Please sign in to comment.