Skip to content

Commit

Permalink
release v2.0.0-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickfreed committed Apr 9, 2021
1 parent 3e68edf commit 35d0d49
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository = "https://github.com/mongodb/mongo-rust-driver"
license = "Apache-2.0"
readme = "README.md"
name = "mongodb"
version = "2.0.0-alpha"
version = "2.0.0-alpha.1"

exclude = [
"etc/**",
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ issue. For more information, see https://github.com/rust-lang/rust/issues/75992.
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`.
```toml
[dependencies]
mongodb = "2.0.0-alpha"
mongodb = "2.0.0-alpha.1"
```

#### Configuring the async runtime
Expand All @@ -47,7 +47,7 @@ The driver supports both of the most popular async runtime crates, namely [`toki
For example, to instruct the driver to work with [`async-std`](https://crates.io/crates/async-std), add the following to your `Cargo.toml`:
```toml
[dependencies.mongodb]
version = "2.0.0-alpha"
version = "2.0.0-alpha.1"
default-features = false
features = ["async-std-runtime"]
```
Expand All @@ -56,7 +56,7 @@ features = ["async-std-runtime"]
The driver also provides a blocking sync API. To enable this, add the `"sync"` feature to your `Cargo.toml`:
```toml
[dependencies.mongodb]
version = "2.0.0-alpha"
version = "2.0.0-alpha.1"
default-features = false
features = ["sync"]
```
Expand Down

0 comments on commit 35d0d49

Please sign in to comment.