From d413ed6e637a614dd56c2448df9884d3ab8e3786 Mon Sep 17 00:00:00 2001 From: KodrAus Date: Tue, 15 Nov 2022 08:12:22 +1000 Subject: [PATCH] prepare for 1.2.2 release --- Cargo.toml | 4 ++-- README.md | 6 +++--- macros/Cargo.toml | 2 +- src/lib.rs | 8 ++++---- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5828bfc7..32081fc6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ homepage = "https://github.com/uuid-rs/uuid" name = "uuid" readme = "README.md" repository = "https://github.com/uuid-rs/uuid" -version = "1.2.1" # remember to update html_root_url in lib.rs +version = "1.2.2" # remember to update html_root_url in lib.rs [package.metadata.docs.rs] rustc-args = ["--cfg", "uuid_unstable"] @@ -134,7 +134,7 @@ version = "1" # Use the `macro-diagnostics` feature instead [dependencies.uuid-macro-internal] package = "uuid-macro-internal" -version = "1.2.1" +version = "1.2.2" path = "macros" optional = true diff --git a/README.md b/README.md index 92cf092d..a6f8ad91 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Add the following to your `Cargo.toml`: ```toml [dependencies.uuid] -version = "1.2.1" +version = "1.2.2" features = [ "v4", # Lets you generate random UUIDs "fast-rng", # Use a faster (but still sufficiently random) RNG @@ -66,7 +66,7 @@ assert_eq!(Some(Version::Random), my_uuid.get_version()); If you'd like to parse UUIDs _really_ fast, check out the [`uuid-simd`](https://github.com/nugine/uuid-simd) library. -For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.2.1/uuid). +For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.2.2/uuid). ## Minimum Supported Rust Version (MSRV) @@ -75,7 +75,7 @@ CI. It may be bumped in minor releases as necessary. ## References -* [`uuid` library docs](https://docs.rs/uuid/1.2.1/uuid). +* [`uuid` library docs](https://docs.rs/uuid/1.2.2/uuid). * [Wikipedia: Universally Unique Identifier](http://en.wikipedia.org/wiki/Universally_unique_identifier). * [RFC4122: A Universally Unique IDentifier (UUID) URN Namespace](http://tools.ietf.org/html/rfc4122). diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 4af8c7ea..2a81a64c 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uuid-macro-internal" -version = "1.2.1" +version = "1.2.2" edition = "2018" authors = [ "QnnOkabayashi" diff --git a/src/lib.rs b/src/lib.rs index 80484c90..49ef8416 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -39,7 +39,7 @@ //! //! ```toml //! [dependencies.uuid] -//! version = "1.2.1" +//! version = "1.2.2" //! features = [ //! "v4", # Lets you generate random UUIDs //! "fast-rng", # Use a faster (but still sufficiently random) RNG @@ -138,7 +138,7 @@ //! //! ```toml //! [dependencies.uuid] -//! version = "1.2.1" +//! version = "1.2.2" //! features = [ //! "v4", //! "v7", @@ -153,7 +153,7 @@ //! //! ```toml //! [dependencies.uuid] -//! version = "1.2.1" +//! version = "1.2.2" //! default-features = false //! ``` //! @@ -211,7 +211,7 @@ #![doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "https://www.rust-lang.org/favicon.ico", - html_root_url = "https://docs.rs/uuid/1.2.1" + html_root_url = "https://docs.rs/uuid/1.2.2" )] #[cfg(any(feature = "std", test))]