Skip to content

Commit 7bc5b39

Browse files
authored
release v3.0.0 (#1148)
1 parent d1bd97b commit 7bc5b39

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ homepage = "https://www.mongodb.com/docs/drivers/rust/"
1616
license = "Apache-2.0"
1717
readme = "README.md"
1818
name = "mongodb"
19-
version = "3.0.0-beta"
19+
version = "3.0.0"
2020

2121
exclude = [
2222
"etc/**",
@@ -85,7 +85,7 @@ once_cell = "1.19.0"
8585
log = { version = "0.4.17", optional = true }
8686
md-5 = "0.10.1"
8787
mongocrypt = { version = "0.1.3", optional = true }
88-
mongodb-internal-macros = { path = "macros", version = "3.0.0-beta" }
88+
mongodb-internal-macros = { path = "macros", version = "3.0.0" }
8989
num_cpus = { version = "1.13.1", optional = true }
9090
openssl = { version = "0.10.38", optional = true }
9191
openssl-probe = { version = "0.1.5", optional = true }

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The driver tests against Linux, MacOS, and Windows in CI.
1818
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`.
1919
```toml
2020
[dependencies]
21-
mongodb = "3.0.0-beta"
21+
mongodb = "3.0.0"
2222
```
2323

2424
Version 1 of this crate has reached end of life and will no longer be receiving any updates or bug fixes, so all users are recommended to always depend on the latest 2.x release. See the [2.0.0 release notes](https://github.com/mongodb/mongo-rust-driver/releases/tag/v2.0.0) for migration information if upgrading from a 1.x version.
@@ -27,7 +27,7 @@ Version 1 of this crate has reached end of life and will no longer be receiving
2727
The driver also provides a blocking sync API. To enable this, add the `"sync"` feature to your `Cargo.toml`:
2828
```toml
2929
[dependencies.mongodb]
30-
version = "3.0.0-beta"
30+
version = "3.0.0"
3131
features = ["sync"]
3232
```
3333
**Note:** The sync-specific types can be imported from `mongodb::sync` (e.g. `mongodb::sync::Client`).

macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "mongodb-internal-macros"
3+
version = "3.0.0"
34
description = "Internal macros for the mongodb crate"
4-
version = "3.0.0-beta"
55
edition = "2021"
66
license = "Apache-2.0"
77

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
)]
1313
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1414
#![cfg_attr(test, type_length_limit = "80000000")]
15-
#![doc(html_root_url = "https://docs.rs/mongodb/3.0.0-beta")]
15+
#![doc(html_root_url = "https://docs.rs/mongodb/3.0.0")]
1616

1717
#[macro_use]
1818
pub mod options;

0 commit comments

Comments
 (0)