Skip to content

Commit 0711b10

Browse files
authored
release v3.6.0 (#1674)
1 parent f20b3d0 commit 0711b10

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The driver is available on [crates.io](https://crates.io/crates/mongodb). To use
2323

2424
```toml
2525
[dependencies]
26-
mongodb = "3.5.2"
26+
mongodb = "3.6.0"
2727
```
2828

2929
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.
@@ -34,7 +34,7 @@ The driver also provides a blocking sync API. To enable this, add the `"sync"` f
3434

3535
```toml
3636
[dependencies.mongodb]
37-
version = "3.5.2"
37+
version = "3.6.0"
3838
features = ["sync"]
3939
```
4040

driver/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ categories = ["asynchronous", "database", "web-programming"]
55
homepage = "https://www.mongodb.com/docs/drivers/rust/"
66
readme = "README.md"
77
name = "mongodb"
8-
version = "3.5.2"
8+
version = "3.6.0"
99

1010
authors.workspace = true
1111
license.workspace = true
@@ -101,7 +101,7 @@ hickory-resolver = { version = "0.25", optional = true }
101101
hmac = "0.12.1"
102102
log = { version = "0.4.17", optional = true }
103103
md-5 = "0.10.1"
104-
mongodb-internal-macros = { path = "../macros", version = "3.5.2" }
104+
mongodb-internal-macros = { path = "../macros", version = "3.6.0" }
105105
num_cpus = { version = "1.13.1", optional = true }
106106
openssl = { version = "0.10.38", optional = true }
107107
openssl-probe = { version = "0.1.5", optional = true }

driver/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
)]
1616
#![cfg_attr(docsrs, feature(doc_cfg))]
1717
#![cfg_attr(test, type_length_limit = "80000000")]
18-
#![doc(html_root_url = "https://docs.rs/mongodb/3.5.2")]
18+
#![doc(html_root_url = "https://docs.rs/mongodb/3.6.0")]
1919

2020
#[macro_use]
2121
pub mod options;

macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mongodb-internal-macros"
3-
version = "3.5.2"
3+
version = "3.6.0"
44
description = "Internal macros for the mongodb crate"
55

66
authors.workspace = true

0 commit comments

Comments
 (0)