Skip to content

Commit 57e8892

Browse files
committed
release v2.7.0-beta
1 parent 2f9fe86 commit 57e8892

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ homepage = "https://www.mongodb.com/docs/drivers/rust/"
1515
license = "Apache-2.0"
1616
readme = "README.md"
1717
name = "mongodb"
18-
version = "2.6.0"
18+
version = "2.7.0-beta"
1919

2020
exclude = [
2121
"etc/**",
@@ -90,7 +90,7 @@ tracing-unstable = ["tracing", "log"]
9090
async-trait = "0.1.42"
9191
base64 = "0.13.0"
9292
bitflags = "1.1.0"
93-
bson = { git = "https://github.com/mongodb/bson-rust", branch = "main" }
93+
bson = "2.7.0"
9494
chrono = { version = "0.4.7", default-features = false, features = ["clock", "std"] }
9595
derivative = "2.1.1"
9696
derive_more = "0.99.17"
@@ -104,7 +104,7 @@ hmac = "0.12.1"
104104
lazy_static = "1.4.0"
105105
log = { version = "0.4.17", optional = true }
106106
md-5 = "0.10.1"
107-
mongocrypt = { git = "https://github.com/mongodb/libmongocrypt-rust.git", branch = "main", optional = true }
107+
mongocrypt = { version = "0.1.2", optional = true }
108108
num_cpus = { version = "1.13.1", optional = true }
109109
openssl = { version = "0.10.38", optional = true }
110110
openssl-probe = { version = "0.1.5", optional = true }

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The driver tests against Linux, MacOS, and Windows in CI.
4444
The driver is available on [crates.io](https://crates.io/crates/mongodb). To use the driver in your application, simply add it to your project's `Cargo.toml`.
4545
```toml
4646
[dependencies]
47-
mongodb = "2.6.0"
47+
mongodb = "2.7.0-beta"
4848
```
4949

5050
Version 1 of this crate has reached end of life and will no longer be receiving any updates or bug fixes, so all users are recommended to always depend on the latest 2.x release. See the [2.0.0 release notes](https://github.com/mongodb/mongo-rust-driver/releases/tag/v2.0.0) for migration information if upgrading from a 1.x version.
@@ -55,7 +55,7 @@ The driver supports both of the most popular async runtime crates, namely [`toki
5555
For example, to instruct the driver to work with [`async-std`](https://crates.io/crates/async-std), add the following to your `Cargo.toml`:
5656
```toml
5757
[dependencies.mongodb]
58-
version = "2.6.0"
58+
version = "2.7.0-beta"
5959
default-features = false
6060
features = ["async-std-runtime"]
6161
```
@@ -64,7 +64,7 @@ features = ["async-std-runtime"]
6464
The driver also provides a blocking sync API. To enable this, add the `"sync"` or `"tokio-sync"` feature to your `Cargo.toml`:
6565
```toml
6666
[dependencies.mongodb]
67-
version = "2.6.0"
67+
version = "2.7.0-beta"
6868
features = ["tokio-sync"]
6969
```
7070
Using the `"sync"` feature also requires using `default-features = false`.

manual/src/installation_features.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The driver supports both of the most popular async runtime crates, namely [`toki
1313
For example, to instruct the driver to work with [`async-std`](https://crates.io/crates/async-std), add the following to your `Cargo.toml`:
1414
```toml
1515
[dependencies.mongodb]
16-
version = "2.6.0"
16+
version = "2.7.0-beta"
1717
default-features = false
1818
features = ["async-std-runtime"]
1919
```
@@ -22,7 +22,7 @@ features = ["async-std-runtime"]
2222
The driver also provides a blocking sync API. To enable this, add the `"sync"` or `"tokio-sync"` feature to your `Cargo.toml`:
2323
```toml
2424
[dependencies.mongodb]
25-
version = "2.6.0"
25+
version = "2.7.0-beta"
2626
features = ["tokio-sync"]
2727
```
2828
Using the `"sync"` feature also requires using `default-features = false`.

src/lib.rs

+4-4
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.6.0"
19+
//! mongodb = "2.7.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.6.0"
33+
//! version = "2.7.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.6.0"
43+
//! version = "2.7.0-beta"
4444
//! features = ["tokio-sync"]
4545
//! ```
4646
//! Using the `"sync"` feature also requires using `default-features = false`.
@@ -306,7 +306,7 @@
306306
)]
307307
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
308308
#![cfg_attr(test, type_length_limit = "80000000")]
309-
#![doc(html_root_url = "https://docs.rs/mongodb/2.6.0")]
309+
#![doc(html_root_url = "https://docs.rs/mongodb/2.7.0-beta")]
310310

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

0 commit comments

Comments
 (0)