From 1d0209df56e4ceb95ec60cea1f657d6b90af23b5 Mon Sep 17 00:00:00 2001 From: Isabel Atkinson Date: Thu, 20 Nov 2025 10:57:52 -0500 Subject: [PATCH 1/2] minor: add symlink for top-level README in driver directory (#1535) --- driver/Cargo.toml | 2 +- driver/README.md | 1 + driver/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) create mode 120000 driver/README.md diff --git a/driver/Cargo.toml b/driver/Cargo.toml index c2f1c90c6..36247bd9e 100644 --- a/driver/Cargo.toml +++ b/driver/Cargo.toml @@ -3,7 +3,7 @@ description = "The official MongoDB driver for Rust" keywords = ["mongo", "mongodb", "database", "bson", "nosql"] categories = ["asynchronous", "database", "web-programming"] homepage = "https://www.mongodb.com/docs/drivers/rust/" -readme = "../README.md" +readme = "README.md" name = "mongodb" version = "3.4.0" diff --git a/driver/README.md b/driver/README.md new file mode 120000 index 000000000..32d46ee88 --- /dev/null +++ b/driver/README.md @@ -0,0 +1 @@ +../README.md \ No newline at end of file diff --git a/driver/src/lib.rs b/driver/src/lib.rs index d8aed805c..b919b1724 100644 --- a/driver/src/lib.rs +++ b/driver/src/lib.rs @@ -1,4 +1,4 @@ -#![doc = include_str!("../../README.md")] +#![doc = include_str!("../README.md")] #![warn( missing_docs, rustdoc::missing_crate_level_docs, From 1957e408de57094dfabb8593f40971bb6bfc25a5 Mon Sep 17 00:00:00 2001 From: Isabel Atkinson Date: Thu, 20 Nov 2025 13:40:23 -0500 Subject: [PATCH 2/2] release v3.4.1 (#1536) --- Cargo.lock | 4 ++-- README.md | 4 ++-- driver/Cargo.toml | 4 ++-- driver/src/lib.rs | 2 +- macros/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ba7dfce32..0b022558a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2105,7 +2105,7 @@ source = "git+https://github.com/mongodb/libmongocrypt-rust.git?branch=main#6fc0 [[package]] name = "mongodb" -version = "3.4.0" +version = "3.4.1" dependencies = [ "anyhow", "approx", @@ -2186,7 +2186,7 @@ dependencies = [ [[package]] name = "mongodb-internal-macros" -version = "3.4.0" +version = "3.4.1" dependencies = [ "macro_magic", "proc-macro2", diff --git a/README.md b/README.md index ec294a701..bdc3774ab 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ The driver is available on [crates.io](https://crates.io/crates/mongodb). To use ```toml [dependencies] -mongodb = "3.4.0" +mongodb = "3.4.1" ``` 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 ```toml [dependencies.mongodb] -version = "3.4.0" +version = "3.4.1" features = ["sync"] ``` diff --git a/driver/Cargo.toml b/driver/Cargo.toml index 36247bd9e..37ca61f8a 100644 --- a/driver/Cargo.toml +++ b/driver/Cargo.toml @@ -5,7 +5,7 @@ categories = ["asynchronous", "database", "web-programming"] homepage = "https://www.mongodb.com/docs/drivers/rust/" readme = "README.md" name = "mongodb" -version = "3.4.0" +version = "3.4.1" authors.workspace = true license.workspace = true @@ -97,7 +97,7 @@ hickory-resolver = { version = "0.25", optional = true } hmac = "0.12.1" log = { version = "0.4.17", optional = true } md-5 = "0.10.1" -mongodb-internal-macros = { path = "../macros", version = "3.4.0" } +mongodb-internal-macros = { path = "../macros", version = "3.4.1" } num_cpus = { version = "1.13.1", optional = true } openssl = { version = "0.10.38", optional = true } openssl-probe = { version = "0.1.5", optional = true } diff --git a/driver/src/lib.rs b/driver/src/lib.rs index b919b1724..275749f4b 100644 --- a/driver/src/lib.rs +++ b/driver/src/lib.rs @@ -15,7 +15,7 @@ )] #![cfg_attr(docsrs, feature(doc_cfg))] #![cfg_attr(test, type_length_limit = "80000000")] -#![doc(html_root_url = "https://docs.rs/mongodb/3.4.0")] +#![doc(html_root_url = "https://docs.rs/mongodb/3.4.1")] #[macro_use] pub mod options; diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 68c18bed5..27f585e24 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mongodb-internal-macros" -version = "3.4.0" +version = "3.4.1" description = "Internal macros for the mongodb crate" authors.workspace = true