Skip to content

Commit dfb484b

Browse files
committed
release v2.0.0-beta
1 parent 974c663 commit dfb484b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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 = "2.0.0-alpha.1"
11+
version = "2.0.0-beta"
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 = "2.0.0-alpha.1"
41+
mongodb = "2.0.0-beta"
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 = "2.0.0-alpha.1"
50+
version = "2.0.0-beta"
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 = "2.0.0-alpha.1"
59+
version = "2.0.0-beta"
6060
default-features = false
6161
features = ["sync"]
6262
```

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
#![cfg_attr(docsrs, feature(doc_cfg))]
8484
#![cfg_attr(test, type_length_limit = "80000000")]
8585

86-
#![doc(html_root_url = "https://docs.rs/mongodb/2.0.0-alpha.1")]
86+
#![doc(html_root_url = "https://docs.rs/mongodb/2.0.0-beta")]
8787

8888
macro_rules! define_if_single_runtime_enabled {
8989
( $( $def:item )+ ) => {

0 commit comments

Comments
 (0)