prepare for 1.16.0 release

This commit is contained in:
KodrAus 2025-03-14 13:22:47 +10:00
parent 420f6279ae
commit 5338b246b7
5 changed files with 13 additions and 13 deletions

View File

@ -29,7 +29,7 @@ homepage = "https://github.com/uuid-rs/uuid"
name = "uuid" name = "uuid"
readme = "README.md" readme = "README.md"
repository = "https://github.com/uuid-rs/uuid" repository = "https://github.com/uuid-rs/uuid"
version = "1.15.1" # remember to update html_root_url in lib.rs version = "1.16.0" # remember to update html_root_url in lib.rs
rust-version = "1.63.0" rust-version = "1.63.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
@ -84,7 +84,7 @@ borsh = ["dep:borsh", "dep:borsh-derive"]
# Public: Used in trait impls on `Uuid` # Public: Used in trait impls on `Uuid`
[dependencies.bytemuck] [dependencies.bytemuck]
version = "1.15.1" version = "1.16.0"
optional = true optional = true
features = ["derive"] features = ["derive"]
@ -135,7 +135,7 @@ optional = true
[target.'cfg(all(target_arch = "wasm32", target_vendor = "unknown", target_os = "unknown"))'.dependencies.uuid-rng-internal-lib] [target.'cfg(all(target_arch = "wasm32", target_vendor = "unknown", target_os = "unknown"))'.dependencies.uuid-rng-internal-lib]
# Work-around lack of support for both `dep:x` and `x/` in MSRV # Work-around lack of support for both `dep:x` and `x/` in MSRV
package = "uuid-rng-internal" package = "uuid-rng-internal"
version = "1.15.1" version = "1.16.0"
path = "rng" path = "rng"
optional = true optional = true
@ -158,7 +158,7 @@ version = "1"
# Public: Re-exported # Public: Re-exported
[dependencies.uuid-macro-internal] [dependencies.uuid-macro-internal]
version = "1.15.1" version = "1.16.0"
path = "macros" path = "macros"
optional = true optional = true

View File

@ -28,7 +28,7 @@ Add the following to your `Cargo.toml`:
```toml ```toml
[dependencies.uuid] [dependencies.uuid]
version = "1.15.1" version = "1.16.0"
# Lets you generate random UUIDs # Lets you generate random UUIDs
features = [ features = [
"v4", "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) If you'd like to parse UUIDs _really_ fast, check out the [`uuid-simd`](https://github.com/nugine/uuid-simd)
library. library.
For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.15.1/uuid). For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.16.0/uuid).
## References ## References
* [`uuid` library docs](https://docs.rs/uuid/1.15.1/uuid). * [`uuid` library docs](https://docs.rs/uuid/1.16.0/uuid).
* [Wikipedia: Universally Unique Identifier](http://en.wikipedia.org/wiki/Universally_unique_identifier). * [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). * [RFC 9562: Universally Unique IDentifiers (UUID)](https://www.ietf.org/rfc/rfc9562.html).

View File

@ -1,6 +1,6 @@
[package] [package]
name = "uuid-macro-internal" name = "uuid-macro-internal"
version = "1.15.1" version = "1.16.0"
edition = "2018" edition = "2018"
authors = [ authors = [
"QnnOkabayashi" "QnnOkabayashi"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "uuid-rng-internal" name = "uuid-rng-internal"
version = "1.15.1" version = "1.16.0"
edition = "2018" edition = "2018"
authors = [ authors = [
"uuid-rs contributors" "uuid-rs contributors"

View File

@ -38,7 +38,7 @@
//! //!
//! ```toml //! ```toml
//! [dependencies.uuid] //! [dependencies.uuid]
//! version = "1.15.1" //! version = "1.16.0"
//! # Lets you generate random UUIDs //! # Lets you generate random UUIDs
//! features = [ //! features = [
//! "v4", //! "v4",
@ -139,7 +139,7 @@
//! //!
//! ```toml //! ```toml
//! [dependencies.uuid] //! [dependencies.uuid]
//! version = "1.15.1" //! version = "1.16.0"
//! features = [ //! features = [
//! "v4", //! "v4",
//! "v7", //! "v7",
@ -154,7 +154,7 @@
//! //!
//! ```toml //! ```toml
//! [dependencies.uuid] //! [dependencies.uuid]
//! version = "1.15.1" //! version = "1.16.0"
//! default-features = false //! default-features = false
//! ``` //! ```
//! //!
@ -212,7 +212,7 @@
#![doc( #![doc(
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", 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_favicon_url = "https://www.rust-lang.org/favicon.ico",
html_root_url = "https://docs.rs/uuid/1.15.1" html_root_url = "https://docs.rs/uuid/1.16.0"
)] )]
#[cfg(any(feature = "std", test))] #[cfg(any(feature = "std", test))]