diff --git a/Cargo.toml b/Cargo.toml index aedea92c..db54bf7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,13 @@ [package] name = "bson" -version = "2.3.0" +version = "2.5.0" authors = [ "Y. T. Chung ", "Kevin Yeh ", "Saghm Rossi ", "Patrick Freed ", "Isabel Atkinson ", + "Abraham Egnor ", ] description = "Encoding and decoding support for BSON in Rust" license = "MIT" diff --git a/README.md b/README.md index c4e7729e..012752f8 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.3.0" +bson = "2.5.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 17dc6435..afe69bf4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -51,7 +51,7 @@ //! //! ```toml //! [dependencies] -//! bson = "2.3.0" +//! bson = "2.5.0" //! ``` //! //! Note that if you are using `bson` through the `mongodb` crate, you do not need to specify it in @@ -264,7 +264,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.3.0")] +#![doc(html_root_url = "https://docs.rs/bson/2.5.0")] #![cfg_attr(docsrs, feature(doc_cfg))] #[doc(inline)]