Skip to content

Commit 353c964

Browse files
release v2.6.1
1 parent 5e19f9b commit 353c964

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
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.6.0"
18+
version = "2.6.1"
1919

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

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The driver tests against Linux, MacOS, and Windows in CI.
4444
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`.
4545
```toml
4646
[dependencies]
47-
mongodb = "2.6.0"
47+
mongodb = "2.6.1"
4848
```
4949

5050
Version 1 of this crate has reached end of life and will no longer be receiving any updates or bug fixes, so all users are recommended to always depend on the latest 2.x release. See the [2.0.0 release notes](https://github.com/mongodb/mongo-rust-driver/releases/tag/v2.0.0) for migration information if upgrading from a 1.x version.
@@ -55,7 +55,7 @@ The driver supports both of the most popular async runtime crates, namely [`toki
5555
For example, to instruct the driver to work with [`async-std`](https://crates.io/crates/async-std), add the following to your `Cargo.toml`:
5656
```toml
5757
[dependencies.mongodb]
58-
version = "2.6.0"
58+
version = "2.6.1"
5959
default-features = false
6060
features = ["async-std-runtime"]
6161
```
@@ -64,7 +64,7 @@ features = ["async-std-runtime"]
6464
The driver also provides a blocking sync API. To enable this, add the `"sync"` or `"tokio-sync"` feature to your `Cargo.toml`:
6565
```toml
6666
[dependencies.mongodb]
67-
version = "2.6.0"
67+
version = "2.6.1"
6868
features = ["tokio-sync"]
6969
```
7070
Using the `"sync"` feature also requires using `default-features = false`.

manual/src/installation_features.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The driver supports both of the most popular async runtime crates, namely [`toki
1313
For example, to instruct the driver to work with [`async-std`](https://crates.io/crates/async-std), add the following to your `Cargo.toml`:
1414
```toml
1515
[dependencies.mongodb]
16-
version = "2.6.0"
16+
version = "2.6.1"
1717
default-features = false
1818
features = ["async-std-runtime"]
1919
```
@@ -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.6.0"
25+
version = "2.6.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.6.0"
19+
//! mongodb = "2.6.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.6.0"
33+
//! version = "2.6.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.6.0"
43+
//! version = "2.6.1"
4444
//! features = ["tokio-sync"]
4545
//! ```
4646
//! Using the `"sync"` feature also requires using `default-features = false`.
@@ -303,7 +303,7 @@
303303
)]
304304
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
305305
#![cfg_attr(test, type_length_limit = "80000000")]
306-
#![doc(html_root_url = "https://docs.rs/mongodb/2.6.0")]
306+
#![doc(html_root_url = "https://docs.rs/mongodb/2.6.1")]
307307

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

0 commit comments

Comments
 (0)