Skip to content

Commit cfc8213

Browse files
authored
release v2.4.0-beta (#806)
1 parent f16fac2 commit cfc8213

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
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.4.0"
18+
version = "2.4.0-beta"
1919

2020
exclude = [
2121
"etc/**",
@@ -79,7 +79,7 @@ tracing-unstable = ["tracing", "log"]
7979
async-trait = "0.1.42"
8080
base64 = "0.13.0"
8181
bitflags = "1.1.0"
82-
bson = { git = "https://github.com/mongodb/bson-rust", branch = "main" }
82+
bson = "2.5.0"
8383
chrono = { version = "0.4.7", default-features = false, features = ["clock", "std"] }
8484
derivative = "2.1.1"
8585
derive_more = "0.99.17"
@@ -93,7 +93,7 @@ hmac = "0.12.1"
9393
lazy_static = "1.4.0"
9494
log = { version = "0.4.17", optional = true }
9595
md-5 = "0.10.1"
96-
mongocrypt = { git = "https://github.com/mongodb/libmongocrypt-rust.git", branch = "main", optional = true }
96+
mongocrypt = { version = "0.1.0", optional = true }
9797
num_cpus = { version = "1.13.1", optional = true }
9898
openssl = { version = "0.10.38", optional = true }
9999
openssl-probe = { version = "0.1.5", optional = true }

README.md

Lines changed: 3 additions & 3 deletions
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.3.0"
47+
mongodb = "2.4.0"
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.3.0"
58+
version = "2.4.0"
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.3.0"
67+
version = "2.4.0"
6868
features = ["tokio-sync"]
6969
```
7070
Using the `"sync"` feature also requires using `default-features = false`.

manual/src/installation_features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.3.0"
25+
version = "2.4.0"
2626
features = ["tokio-sync"]
2727
```
2828
Using the `"sync"` feature also requires using `default-features = false`.

0 commit comments

Comments
 (0)