Skip to content

Commit 6cf14c5

Browse files
committed
release v1.2.5
1 parent d2d7e50 commit 6cf14c5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repository = "https://github.com/mongodb/mongo-rust-driver"
88
license = "Apache-2.0"
99
readme = "README.md"
1010
name = "mongodb"
11-
version = "1.2.4"
11+
version = "1.2.5"
1212

1313
exclude = [
1414
"etc/**",

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ issue. For more information, see https://github.com/rust-lang/rust/issues/75992.
3838
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`.
3939
```toml
4040
[dependencies]
41-
mongodb = "1.2.4"
41+
mongodb = "1.2.5"
4242
```
4343

4444
#### Configuring the async runtime
@@ -47,7 +47,7 @@ The driver supports both of the most popular async runtime crates, namely [`toki
4747
For example, to instruct the driver to work with [`async-std`](https://crates.io/crates/async-std), add the following to your `Cargo.toml`:
4848
```toml
4949
[dependencies.mongodb]
50-
version = "1.2.4"
50+
version = "1.2.5"
5151
default-features = false
5252
features = ["async-std-runtime"]
5353
```
@@ -56,7 +56,7 @@ features = ["async-std-runtime"]
5656
The driver also provides a blocking sync API. To enable this, add the `"sync"` feature to your `Cargo.toml`:
5757
```toml
5858
[dependencies.mongodb]
59-
version = "1.2.4"
59+
version = "1.2.5"
6060
default-features = false
6161
features = ["sync"]
6262
```

0 commit comments

Comments
 (0)