Skip to content

Commit 8c17b8f

Browse files
authored
release v2.3.1 (#754)
1 parent 7ab9d7a commit 8c17b8f

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ homepage = "https://www.mongodb.com/docs/drivers/rust/"
1515
license = "Apache-2.0"
1616
readme = "README.md"
1717
name = "mongodb"
18-
version = "2.3.0"
18+
version = "2.3.1"
1919

2020
exclude = [
2121
"etc/**",

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ For more detailed documentation, see [the manual](https://mongodb.github.io/mong
3939
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`.
4040
```toml
4141
[dependencies]
42-
mongodb = "2.3.0"
42+
mongodb = "2.3.1"
4343
```
4444

4545
#### Configuring the async runtime
@@ -48,7 +48,7 @@ The driver supports both of the most popular async runtime crates, namely [`toki
4848
For example, to instruct the driver to work with [`async-std`](https://crates.io/crates/async-std), add the following to your `Cargo.toml`:
4949
```toml
5050
[dependencies.mongodb]
51-
version = "2.3.0"
51+
version = "2.3.1"
5252
default-features = false
5353
features = ["async-std-runtime"]
5454
```
@@ -57,7 +57,7 @@ features = ["async-std-runtime"]
5757
The driver also provides a blocking sync API. To enable this, add the `"sync"` or `"tokio-sync"` feature to your `Cargo.toml`:
5858
```toml
5959
[dependencies.mongodb]
60-
version = "2.3.0"
60+
version = "2.3.1"
6161
features = ["tokio-sync"]
6262
```
6363
Using the `"sync"` feature also requires using `default-features = false`.

manual/src/installation_features.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ features = ["async-std-runtime"]
2222
The driver also provides a blocking sync API. To enable this, add the `"sync"` or `"tokio-sync"` feature to your `Cargo.toml`:
2323
```toml
2424
[dependencies.mongodb]
25-
version = "2.3.0"
25+
version = "2.3.1"
2626
features = ["tokio-sync"]
2727
```
2828
Using the `"sync"` feature also requires using `default-features = false`.

src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
//! your application, simply add it to your project's `Cargo.toml`.
1717
//! ```toml
1818
//! [dependencies]
19-
//! mongodb = "2.3.0"
19+
//! mongodb = "2.3.1"
2020
//! ```
2121
//!
2222
//! ### Configuring the async runtime
@@ -30,7 +30,7 @@
3030
//! add the following to your `Cargo.toml`:
3131
//! ```toml
3232
//! [dependencies.mongodb]
33-
//! version = "2.3.0"
33+
//! version = "2.3.1"
3434
//! default-features = false
3535
//! features = ["async-std-runtime"]
3636
//! ```
@@ -40,7 +40,7 @@
4040
//! feature to your `Cargo.toml`:
4141
//! ```toml
4242
//! [dependencies.mongodb]
43-
//! version = "2.3.0"
43+
//! version = "2.3.1"
4444
//! features = ["tokio-sync"]
4545
//! ```
4646
//! Using the `"sync"` feature also requires using `default-features = false`.
@@ -301,7 +301,7 @@
301301
)]
302302
#![cfg_attr(docsrs, feature(doc_cfg))]
303303
#![cfg_attr(test, type_length_limit = "80000000")]
304-
#![doc(html_root_url = "https://docs.rs/mongodb/2.3.0")]
304+
#![doc(html_root_url = "https://docs.rs/mongodb/2.3.1")]
305305

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

0 commit comments

Comments
 (0)