From 37cd304ffeeb52385a616d0043ff59fb23b1a4c8 Mon Sep 17 00:00:00 2001 From: Patrick Freed Date: Tue, 16 Nov 2021 16:01:30 -0500 Subject: [PATCH] release v2.1.0-beta --- Cargo.toml | 3 ++- README.md | 2 +- src/lib.rs | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d575c3db..a200e156 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,13 @@ [package] name = "bson" -version = "2.0.0" +version = "2.1.0-beta" 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 8b9438b8..06cfe194 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.0.0" +bson = "2.1.0-beta" ``` 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 7591a3ab..c71014b9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -51,7 +51,7 @@ //! //! ```toml //! [dependencies] -//! bson = "2.0.0" +//! bson = "2.1.0-beta" //! ``` //! //! 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)] -#![doc(html_root_url = "https://docs.rs/bson/2.0.0")] +#![doc(html_root_url = "https://docs.rs/bson/2.1.0-beta")] #![cfg_attr(docsrs, feature(doc_cfg))] #[doc(inline)]