prepare for 1.13.1 release

This commit is contained in:
Ashley Mannix 2025-02-05 15:23:38 +10:00
parent f175242553
commit df5867440a
5 changed files with 12 additions and 12 deletions

View File

@ -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.13.0" # remember to update html_root_url in lib.rs
version = "1.13.1" # remember to update html_root_url in lib.rs
rust-version = "1.63.0"
[package.metadata.docs.rs]
@ -135,7 +135,7 @@ optional = true
[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
package = "uuid-rng-internal"
version = "1.13.0"
version = "1.13.1"
path = "rng"
optional = true
@ -158,7 +158,7 @@ version = "1"
# Public: Re-exported
[dependencies.uuid-macro-internal]
version = "1.13.0"
version = "1.13.1"
path = "macros"
optional = true

View File

@ -28,7 +28,7 @@ Add the following to your `Cargo.toml`:
```toml
[dependencies.uuid]
version = "1.13.0"
version = "1.13.1"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
@ -65,11 +65,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.13.0/uuid).
For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.13.1/uuid).
## References
* [`uuid` library docs](https://docs.rs/uuid/1.13.0/uuid).
* [`uuid` library docs](https://docs.rs/uuid/1.13.1/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).

View File

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

View File

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

View File

@ -38,7 +38,7 @@
//!
//! ```toml
//! [dependencies.uuid]
//! version = "1.13.0"
//! version = "1.13.1"
//! 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.13.0"
//! version = "1.13.1"
//! features = [
//! "v4",
//! "v7",
@ -153,7 +153,7 @@
//!
//! ```toml
//! [dependencies.uuid]
//! version = "1.13.0"
//! version = "1.13.1"
//! 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.13.0"
html_root_url = "https://docs.rs/uuid/1.13.1"
)]
#[cfg(any(feature = "std", test))]