From 87d44da5a59a91bcee4684ca1644f4a077c2a628 Mon Sep 17 00:00:00 2001 From: Isabel Atkinson Date: Thu, 20 Nov 2025 12:56:28 -0700 Subject: [PATCH] release v3.1.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 613340bd..7007304f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -112,7 +112,7 @@ dependencies = [ [[package]] name = "bson" -version = "3.0.0" +version = "3.1.0" dependencies = [ "ahash", "assert_matches", diff --git a/Cargo.toml b/Cargo.toml index 999e3153..1feb373b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bson" -version = "3.0.0" +version = "3.1.0" authors = [ "Y. T. Chung ", "Kevin Yeh ", diff --git a/README.md b/README.md index a7419660..4685b592 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ This crate is available on [crates.io](https://crates.io/crates/bson). To use it ```toml [dependencies] -bson = "3.0.0" +bson = "3.1.0" ``` Note that if you are using `bson` through the `mongodb` crate, you do not need to specify it in your diff --git a/src/lib.rs b/src/lib.rs index 40bc8bbe..470ce15f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -51,7 +51,7 @@ //! //! ```toml //! [dependencies] -//! bson = "3.0.0" +//! bson = "3.1.0" //! ``` //! //! Note that if you are using `bson` through the `mongodb` crate, you do not need to specify it in @@ -434,7 +434,7 @@ //! is, it will only happen in a minor or major version release. #![allow(clippy::cognitive_complexity, clippy::derive_partial_eq_without_eq)] -#![doc(html_root_url = "https://docs.rs/bson/3.0.0")] +#![doc(html_root_url = "https://docs.rs/bson/3.1.0")] #![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)]