diff --git a/Cargo.toml b/Cargo.toml index dde634fd..270d2fb7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bson" -version = "2.5.0" +version = "2.6.0" authors = [ "Y. T. Chung ", "Kevin Yeh ", diff --git a/README.md b/README.md index 012752f8..7a128708 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ This crate is available on [crates.io](https://crates.io/crates/bson). To use it ```toml [dependencies] -bson = "2.5.0" +bson = "2.6.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 70cc6350..60c89040 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -51,7 +51,7 @@ //! //! ```toml //! [dependencies] -//! bson = "2.5.0" +//! bson = "2.6.0" //! ``` //! //! Note that if you are using `bson` through the `mongodb` crate, you do not need to specify it in @@ -266,7 +266,7 @@ //! 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/2.5.0")] +#![doc(html_root_url = "https://docs.rs/bson/2.6.0")] #![cfg_attr(docsrs, feature(doc_cfg))] #[doc(inline)]