Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RUST-1339 release v2.3.0-beta #675

Merged
merged 1 commit into from
Jun 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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