diff --git a/Cargo.toml b/Cargo.toml index a0c1f3e..61082b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ homepage = "https://github.com/uuid-rs/uuid" name = "uuid" readme = "README.md" repository = "https://github.com/uuid-rs/uuid" -version = "1.19.0" # remember to update html_root_url in lib.rs +version = "1.20.0" # remember to update html_root_url in lib.rs rust-version = "1.63.0" [package.metadata.docs.rs] @@ -86,7 +86,7 @@ borsh = ["dep:borsh", "dep:borsh-derive"] # Public: Used in trait impls on `Uuid` [dependencies.bytemuck] -version = "1.19.0" +version = "1.20.0" optional = true features = ["derive"] @@ -140,7 +140,7 @@ optional = true [target.'cfg(all(target_arch = "wasm32", any(target_os = "unknown", target_os = "none")))'.dependencies.uuid-rng-internal-lib] # Work-around lack of support for both `dep:x` and `x/` in MSRV package = "uuid-rng-internal" -version = "1.19.0" +version = "1.20.0" path = "rng" optional = true diff --git a/README.md b/README.md index 3385ef8..9a59279 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Add the following to your `Cargo.toml`: ```toml [dependencies.uuid] -version = "1.19.0" +version = "1.20.0" # Lets you generate random UUIDs features = [ "v4", @@ -64,11 +64,11 @@ 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.19.0/uuid). +For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.20.0/uuid). ## References -* [`uuid` library docs](https://docs.rs/uuid/1.19.0/uuid). +* [`uuid` library docs](https://docs.rs/uuid/1.20.0/uuid). * [Wikipedia: Universally Unique Identifier](http://en.wikipedia.org/wiki/Universally_unique_identifier). * [RFC 9562: Universally Unique IDentifiers (UUID)](https://www.ietf.org/rfc/rfc9562.html). diff --git a/rng/Cargo.toml b/rng/Cargo.toml index 61d95dd..54d38d6 100644 --- a/rng/Cargo.toml +++ b/rng/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uuid-rng-internal" -version = "1.19.0" +version = "1.20.0" edition = "2021" authors = [ "uuid-rs contributors" diff --git a/src/lib.rs b/src/lib.rs index 2c9c287..ec34787 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -38,7 +38,7 @@ //! //! ```toml //! [dependencies.uuid] -//! version = "1.19.0" +//! version = "1.20.0" //! # Lets you generate random UUIDs //! features = [ //! "v4", @@ -138,7 +138,7 @@ //! //! ```toml //! [dependencies.uuid] -//! version = "1.19.0" +//! version = "1.20.0" //! features = [ //! "v4", //! "v7", @@ -153,7 +153,7 @@ //! //! ```toml //! [dependencies.uuid] -//! version = "1.19.0" +//! version = "1.20.0" //! 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.19.0" + html_root_url = "https://docs.rs/uuid/1.20.0" )] #[cfg(any(feature = "std", test))]