Skip to content

Commit df84bf0

Browse files
release v3.1.1 (#1271)
1 parent 9739683 commit df84bf0

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Cargo.toml

+3-3
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.1.0"
19+
version = "3.1.1"
2020

2121
exclude = [
2222
"etc/**",
@@ -70,7 +70,7 @@ tracing-unstable = ["dep:tracing", "dep:log"]
7070
async-trait = "0.1.42"
7171
base64 = "0.13.0"
7272
bitflags = "1.1.0"
73-
bson = { git = "https://github.com/mongodb/bson-rust", branch = "main", version = "2.11.0" }
73+
bson = { git = "https://github.com/mongodb/bson-rust", branch = "main", version = "2.13.0" }
7474
chrono = { version = "0.4.7", default-features = false, features = [
7575
"clock",
7676
"std",
@@ -90,7 +90,7 @@ once_cell = "1.19.0"
9090
log = { version = "0.4.17", optional = true }
9191
md-5 = "0.10.1"
9292
mongocrypt = { git = "https://github.com/mongodb/libmongocrypt-rust.git", branch = "main", optional = true, version = "0.2.0" }
93-
mongodb-internal-macros = { path = "macros", version = "3.1.0" }
93+
mongodb-internal-macros = { path = "macros", version = "3.1.1" }
9494
num_cpus = { version = "1.13.1", optional = true }
9595
openssl = { version = "0.10.38", optional = true }
9696
openssl-probe = { version = "0.1.5", optional = true }

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The driver tests against Linux, MacOS, and Windows in CI.
1818
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`.
1919
```toml
2020
[dependencies]
21-
mongodb = "3.1.0"
21+
mongodb = "3.1.1"
2222
```
2323

2424
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.
@@ -27,7 +27,7 @@ Version 1 of this crate has reached end of life and will no longer be receiving
2727
The driver also provides a blocking sync API. To enable this, add the `"sync"` feature to your `Cargo.toml`:
2828
```toml
2929
[dependencies.mongodb]
30-
version = "3.1.0"
30+
version = "3.1.1"
3131
features = ["sync"]
3232
```
3333
**Note:** The sync-specific types can be imported from `mongodb::sync` (e.g. `mongodb::sync::Client`).

macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mongodb-internal-macros"
3-
version = "3.1.0"
3+
version = "3.1.1"
44
description = "Internal macros for the mongodb crate"
55
edition = "2021"
66
license = "Apache-2.0"

src/lib.rs

+1-1
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.1.0")]
15+
#![doc(html_root_url = "https://docs.rs/mongodb/3.1.1")]
1616

1717
#[macro_use]
1818
pub mod options;

0 commit comments

Comments
 (0)