Skip to content

Commit 514ee4a

Browse files
authored
RUST-1339 release v2.3.0-beta (#675)
1 parent f752f87 commit 514ee4a

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ authors = [
44
"Patrick Freed <[email protected]>",
55
"Isabel Atkinson <[email protected]>",
66
"Abraham Egnor <[email protected]>",
7+
"Kaitlin Mahar <[email protected]>",
78
]
89
description = "The official MongoDB driver for Rust"
910
edition = "2018"
@@ -14,7 +15,7 @@ homepage = "https://www.mongodb.com/docs/drivers/rust/"
1415
license = "Apache-2.0"
1516
readme = "README.md"
1617
name = "mongodb"
17-
version = "2.3.0"
18+
version = "2.3.0-beta"
1819

1920
exclude = [
2021
"etc/**",
@@ -54,7 +55,7 @@ snappy-compression = ["snap"]
5455
async-trait = "0.1.42"
5556
base64 = "0.13.0"
5657
bitflags = "1.1.0"
57-
bson = { git = "https://github.com/mongodb/bson-rust", branch = "main" }
58+
bson = "2.3.0"
5859
chrono = "0.4.7"
5960
derivative = "2.1.1"
6061
flate2 = { version = "1.0", optional = true }

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
//! your application, simply add it to your project's `Cargo.toml`.
1717
//! ```toml
1818
//! [dependencies]
19-
//! mongodb = "2.2.0"
19+
//! mongodb = "2.3.0-beta"
2020
//! ```
2121
//!
2222
//! ### Configuring the async runtime
@@ -30,7 +30,7 @@
3030
//! add the following to your `Cargo.toml`:
3131
//! ```toml
3232
//! [dependencies.mongodb]
33-
//! version = "2.2.0"
33+
//! version = "2.3.0-beta"
3434
//! default-features = false
3535
//! features = ["async-std-runtime"]
3636
//! ```
@@ -40,7 +40,7 @@
4040
//! feature to your `Cargo.toml`:
4141
//! ```toml
4242
//! [dependencies.mongodb]
43-
//! version = "2.2.0"
43+
//! version = "2.3.0-beta"
4444
//! features = ["tokio-sync"]
4545
//! ```
4646
//! Using the `"sync"` feature also requires using `default-features = false`.
@@ -301,7 +301,7 @@
301301
)]
302302
#![cfg_attr(docsrs, feature(doc_cfg))]
303303
#![cfg_attr(test, type_length_limit = "80000000")]
304-
#![doc(html_root_url = "https://docs.rs/mongodb/2.2.0")]
304+
#![doc(html_root_url = "https://docs.rs/mongodb/2.3.0-beta")]
305305

306306
#[cfg(all(feature = "aws-auth", feature = "async-std-runtime"))]
307307
compile_error!("The `aws-auth` feature flag is only supported on the tokio runtime.");

0 commit comments

Comments
 (0)