Skip to content

Commit 18c59b7

Browse files
release v3.4.1 (#1536)
1 parent 8063739 commit 18c59b7

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.

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.4.0"
26+
mongodb = "3.4.1"
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.4.0"
37+
version = "3.4.1"
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.4.0"
8+
version = "3.4.1"
99

1010
authors.workspace = true
1111
license.workspace = true
@@ -97,7 +97,7 @@ hickory-resolver = { version = "0.25", optional = true }
9797
hmac = "0.12.1"
9898
log = { version = "0.4.17", optional = true }
9999
md-5 = "0.10.1"
100-
mongodb-internal-macros = { path = "../macros", version = "3.4.0" }
100+
mongodb-internal-macros = { path = "../macros", version = "3.4.1" }
101101
num_cpus = { version = "1.13.1", optional = true }
102102
openssl = { version = "0.10.38", optional = true }
103103
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.4.0")]
18+
#![doc(html_root_url = "https://docs.rs/mongodb/3.4.1")]
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.4.0"
3+
version = "3.4.1"
44
description = "Internal macros for the mongodb crate"
55

66
authors.workspace = true

0 commit comments

Comments
 (0)