From 35d0d499594e605fa3d9474eea7c5b5de3529ce1 Mon Sep 17 00:00:00 2001 From: Patrick Freed Date: Fri, 9 Apr 2021 18:32:19 -0400 Subject: [PATCH] release v2.0.0-alpha.1 --- Cargo.toml | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3efe1b2d9..4779d5721 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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/**", diff --git a/README.md b/README.md index 6cc95a3de..99e251f6e 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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"] ``` @@ -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"] ```