Skip to content

Commit ef3c50a

Browse files
authored
release 0.10.0 (#171)
1 parent 1f1f7b4 commit ef3c50a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
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 = "0.9.1"
11+
version = "0.10.0"
1212

1313
[features]
1414
default = ["tokio-runtime"]

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,17 @@ This repository contains the officially supported MongoDB Rust driver, a client
2020
### Requirements
2121
| Driver Version | Required Rust Version |
2222
|:--------------:|:---------------------:|
23-
| master | 1.42+ |
23+
| master | 1.43+ |
24+
| 0.10.x | 1.43+ |
2425
| 0.9.x | 1.39+ |
2526
- MongoDB 3.6+
2627

2728
### Importing
2829
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`. You will also want to add [`bson`](https://docs.rs/bson) as well.
2930
```toml
3031
[dependencies]
31-
mongodb = "0.9.2"
32-
bson = "0.14.0"
32+
mongodb = "0.10.0"
33+
bson = "0.14.1"
3334
```
3435

3536
## Example Usage

0 commit comments

Comments
 (0)