From 514ee4aa8bb7680e502b5a0992bb866054820db1 Mon Sep 17 00:00:00 2001 From: Kaitlin Mahar Date: Tue, 7 Jun 2022 10:50:24 -0400 Subject: [PATCH] RUST-1339 release v2.3.0-beta (#675) --- Cargo.toml | 5 +++-- src/lib.rs | 8 ++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b28cfd2ca..dd7d48195 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,7 @@ authors = [ "Patrick Freed ", "Isabel Atkinson ", "Abraham Egnor ", + "Kaitlin Mahar ", ] description = "The official MongoDB driver for Rust" edition = "2018" @@ -14,7 +15,7 @@ homepage = "https://www.mongodb.com/docs/drivers/rust/" license = "Apache-2.0" readme = "README.md" name = "mongodb" -version = "2.3.0" +version = "2.3.0-beta" exclude = [ "etc/**", @@ -54,7 +55,7 @@ snappy-compression = ["snap"] async-trait = "0.1.42" base64 = "0.13.0" bitflags = "1.1.0" -bson = { git = "https://github.com/mongodb/bson-rust", branch = "main" } +bson = "2.3.0" chrono = "0.4.7" derivative = "2.1.1" flate2 = { version = "1.0", optional = true } diff --git a/src/lib.rs b/src/lib.rs index 5c0dcfc7c..2772b39c5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,7 +16,7 @@ //! your application, simply add it to your project's `Cargo.toml`. //! ```toml //! [dependencies] -//! mongodb = "2.2.0" +//! mongodb = "2.3.0-beta" //! ``` //! //! ### Configuring the async runtime @@ -30,7 +30,7 @@ //! add the following to your `Cargo.toml`: //! ```toml //! [dependencies.mongodb] -//! version = "2.2.0" +//! version = "2.3.0-beta" //! default-features = false //! features = ["async-std-runtime"] //! ``` @@ -40,7 +40,7 @@ //! feature to your `Cargo.toml`: //! ```toml //! [dependencies.mongodb] -//! version = "2.2.0" +//! version = "2.3.0-beta" //! features = ["tokio-sync"] //! ``` //! Using the `"sync"` feature also requires using `default-features = false`. @@ -301,7 +301,7 @@ )] #![cfg_attr(docsrs, feature(doc_cfg))] #![cfg_attr(test, type_length_limit = "80000000")] -#![doc(html_root_url = "https://docs.rs/mongodb/2.2.0")] +#![doc(html_root_url = "https://docs.rs/mongodb/2.3.0-beta")] #[cfg(all(feature = "aws-auth", feature = "async-std-runtime"))] compile_error!("The `aws-auth` feature flag is only supported on the tokio runtime.");