Skip to content

Commit 54e9d69

Browse files
authored
release v3.7.0 (#1704)
1 parent 12dd49b commit 54e9d69

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.6.0"
26+
mongodb = "3.7.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.6.0"
37+
version = "3.7.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.6.0"
8+
version = "3.7.0"
99

1010
authors.workspace = true
1111
license.workspace = true
@@ -102,7 +102,7 @@ hickory-resolver = { version = "0.26", optional = true }
102102
hmac = "0.12.1"
103103
log = { version = "0.4.17", optional = true }
104104
md-5 = "0.10.1"
105-
mongodb-internal-macros = { path = "../macros", version = "3.6.0" }
105+
mongodb-internal-macros = { path = "../macros", version = "3.7.0" }
106106
num_cpus = { version = "1.13.1", optional = true }
107107
openssl = { version = "0.10.38", optional = true }
108108
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.6.0")]
18+
#![doc(html_root_url = "https://docs.rs/mongodb/3.7.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.6.0"
3+
version = "3.7.0"
44
description = "Internal macros for the mongodb crate"
55

66
authors.workspace = true

0 commit comments

Comments
 (0)