Skip to content

Commit 1ca6570

Browse files
committed
release v1.2.3
1 parent 23f2a5d commit 1ca6570

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Cargo.toml

+2-2
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.2"
11+
version = "1.2.3"
1212

1313
exclude = [
1414
"etc/**",
@@ -34,7 +34,7 @@ bson-u2i = ["bson/u2i"]
3434
async-trait = "0.1.24"
3535
base64 = "0.11.0"
3636
bitflags = "1.1.0"
37-
bson = "1.2.1"
37+
bson = "1.2.3"
3838
chrono = "0.4.7"
3939
derivative = "2.1.1"
4040
err-derive = "0.2.3"

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.2"
41+
mongodb = "1.2.3"
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.2"
50+
version = "1.2.3"
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.2"
59+
version = "1.2.3"
6060
default-features = false
6161
features = ["sync"]
6262
```

0 commit comments

Comments
 (0)