Skip to content

Commit

Permalink
release v2.3.1 (#754)
Browse files Browse the repository at this point in the history
  • Loading branch information
abr-egn authored Oct 3, 2022
1 parent 7ab9d7a commit 8c17b8f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ homepage = "https://www.mongodb.com/docs/drivers/rust/"
license = "Apache-2.0"
readme = "README.md"
name = "mongodb"
version = "2.3.0"
version = "2.3.1"

exclude = [
"etc/**",
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ For more detailed documentation, see [the manual](https://mongodb.github.io/mong
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 = "2.3.0"
mongodb = "2.3.1"
```

#### Configuring the async runtime
Expand All @@ -48,7 +48,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 = "2.3.0"
version = "2.3.1"
default-features = false
features = ["async-std-runtime"]
```
Expand All @@ -57,7 +57,7 @@ features = ["async-std-runtime"]
The driver also provides a blocking sync API. To enable this, add the `"sync"` or `"tokio-sync"` feature to your `Cargo.toml`:
```toml
[dependencies.mongodb]
version = "2.3.0"
version = "2.3.1"
features = ["tokio-sync"]
```
Using the `"sync"` feature also requires using `default-features = false`.
Expand Down
2 changes: 1 addition & 1 deletion manual/src/installation_features.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ features = ["async-std-runtime"]
The driver also provides a blocking sync API. To enable this, add the `"sync"` or `"tokio-sync"` feature to your `Cargo.toml`:
```toml
[dependencies.mongodb]
version = "2.3.0"
version = "2.3.1"
features = ["tokio-sync"]
```
Using the `"sync"` feature also requires using `default-features = false`.
Expand Down
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//! your application, simply add it to your project's `Cargo.toml`.
//! ```toml
//! [dependencies]
//! mongodb = "2.3.0"
//! mongodb = "2.3.1"
//! ```
//!
//! ### Configuring the async runtime
Expand All @@ -30,7 +30,7 @@
//! add the following to your `Cargo.toml`:
//! ```toml
//! [dependencies.mongodb]
//! version = "2.3.0"
//! version = "2.3.1"
//! default-features = false
//! features = ["async-std-runtime"]
//! ```
Expand All @@ -40,7 +40,7 @@
//! feature to your `Cargo.toml`:
//! ```toml
//! [dependencies.mongodb]
//! version = "2.3.0"
//! version = "2.3.1"
//! features = ["tokio-sync"]
//! ```
//! Using the `"sync"` feature also requires using `default-features = false`.
Expand Down Expand Up @@ -301,7 +301,7 @@
)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(test, type_length_limit = "80000000")]
#![doc(html_root_url = "https://docs.rs/mongodb/2.3.0")]
#![doc(html_root_url = "https://docs.rs/mongodb/2.3.1")]

#[cfg(all(feature = "aws-auth", feature = "async-std-runtime"))]
compile_error!("The `aws-auth` feature flag is only supported on the tokio runtime.");
Expand Down

0 comments on commit 8c17b8f

Please sign in to comment.