From 6a5ce9149ac5f1a357c318bd406b0bd1143a1f67 Mon Sep 17 00:00:00 2001 From: Abraham Egnor Date: Wed, 26 Jun 2024 10:04:42 -0400 Subject: [PATCH] RUST-1205 Bump version numbers in main (#1148) (#1149) --- Cargo.toml | 4 ++-- README.md | 4 ++-- macros/Cargo.toml | 2 +- src/lib.rs | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 49f1297b5..b3401754c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ homepage = "https://www.mongodb.com/docs/drivers/rust/" license = "Apache-2.0" readme = "README.md" name = "mongodb" -version = "3.0.0-beta" +version = "3.0.0" exclude = [ "etc/**", @@ -85,7 +85,7 @@ once_cell = "1.19.0" log = { version = "0.4.17", optional = true } md-5 = "0.10.1" mongocrypt = { git = "https://github.com/mongodb/libmongocrypt-rust.git", branch = "main", optional = true } -mongodb-internal-macros = { path = "macros", version = "3.0.0-beta" } +mongodb-internal-macros = { path = "macros", version = "3.0.0" } num_cpus = { version = "1.13.1", optional = true } openssl = { version = "0.10.38", optional = true } openssl-probe = { version = "0.1.5", optional = true } diff --git a/README.md b/README.md index ae4f43452..a0e3cba29 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The driver tests against Linux, MacOS, and Windows in CI. 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 = "3.0.0-beta" +mongodb = "3.0.0" ``` 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 The driver also provides a blocking sync API. To enable this, add the `"sync"` feature to your `Cargo.toml`: ```toml [dependencies.mongodb] -version = "3.0.0-beta" +version = "3.0.0" features = ["sync"] ``` **Note:** The sync-specific types can be imported from `mongodb::sync` (e.g. `mongodb::sync::Client`). diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 76e8ef634..67179f928 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "mongodb-internal-macros" +version = "3.0.0" description = "Internal macros for the mongodb crate" -version = "3.0.0-beta" edition = "2021" license = "Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 4eeb65b27..83794d7ae 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,7 +12,7 @@ )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] #![cfg_attr(test, type_length_limit = "80000000")] -#![doc(html_root_url = "https://docs.rs/mongodb/3.0.0-beta")] +#![doc(html_root_url = "https://docs.rs/mongodb/3.0.0")] #[macro_use] pub mod options;