Skip to content

Commit

Permalink
RUST-1339 release v2.3.0-beta (#675)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmahar committed Jun 7, 2022
1 parent f752f87 commit 514ee4a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ authors = [
"Patrick Freed <patrick.freed@mongodb.com>",
"Isabel Atkinson <isabel.atkinson@mongodb.com>",
"Abraham Egnor <abraham.egnor@mongodb.com>",
"Kaitlin Mahar <kaitlin.mahar@mongodb.com>",
]
description = "The official MongoDB driver for Rust"
edition = "2018"
Expand All @@ -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/**",
Expand Down Expand Up @@ -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 }
Expand Down
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"]
//! ```
Expand All @@ -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`.
Expand Down Expand Up @@ -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.");
Expand Down

0 comments on commit 514ee4a

Please sign in to comment.