Skip to content

Commit 97d7aab

Browse files
authored
release v3.3.0 (#1468)
1 parent 1a1f304 commit 97d7aab

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

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.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ homepage = "https://www.mongodb.com/docs/drivers/rust/"
1616
license = "Apache-2.0"
1717
readme = "README.md"
1818
name = "mongodb"
19-
version = "3.2.3"
19+
version = "3.3.0"
2020
rust-version = "1.83"
2121

2222
exclude = [
@@ -94,7 +94,7 @@ hmac = "0.12.1"
9494
once_cell = "1.19.0"
9595
log = { version = "0.4.17", optional = true }
9696
md-5 = "0.10.1"
97-
mongodb-internal-macros = { path = "macros", version = "3.2.3" }
97+
mongodb-internal-macros = { path = "macros", version = "3.3.0" }
9898
num_cpus = { version = "1.13.1", optional = true }
9999
openssl = { version = "0.10.38", optional = true }
100100
openssl-probe = { version = "0.1.5", optional = true }

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.2.3"
26+
mongodb = "3.3.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.2.3"
37+
version = "3.3.0"
3838
features = ["sync"]
3939
```
4040

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.2.3"
3+
version = "3.3.0"
44
description = "Internal macros for the mongodb crate"
55
edition = "2021"
66
license = "Apache-2.0"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
)]
1313
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1414
#![cfg_attr(test, type_length_limit = "80000000")]
15-
#![doc(html_root_url = "https://docs.rs/mongodb/3.2.3")]
15+
#![doc(html_root_url = "https://docs.rs/mongodb/3.3.0")]
1616

1717
#[macro_use]
1818
pub mod options;

0 commit comments

Comments
 (0)