From 975df600259c92435d1053e27d30c4b2c787e0c2 Mon Sep 17 00:00:00 2001 From: Nikhil Prabhu Date: Mon, 16 Dec 2024 17:31:10 +0530 Subject: [PATCH] chore: bump version to `2.0.0` --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 219458e..c609e38 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloud-detect" -version = "1.1.0" +version = "2.0.0" edition = "2021" authors = ["Nikhil Prabhu "] description = "Detect a host's cloud service provider" diff --git a/README.md b/README.md index 02e9bd6..3850047 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ First, add the library to your project by adding the following to your `Cargo.to ```toml [dependencies] # ... -cloud-detect = "1" +cloud-detect = "2" tokio = { version = "1", features = ["full"] } tracing-subscriber = { version = "0.2", features = ["env-filter"] }# Optional; for logging. ``` diff --git a/src/lib.rs b/src/lib.rs index 52dbebc..db50f45 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,7 +9,7 @@ //! ```toml //! [dependencies] //! # ... -//! cloud_detect = "1.1.0" +//! cloud_detect = "2" //! tokio = { version = "1", features = ["full"] } //! tracing-subscriber = { version = "0.2", features = ["env-filter"] } # Optional; for logging //! ```