Skip to content

Commit a38fa19

Browse files
authored
Merge pull request #859 from uuid-rs/cargo/v1.21.0
Prepare for 1.21.0 release
2 parents f6f5d48 + e45b10f commit a38fa19

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ homepage = "https://github.com/uuid-rs/uuid"
2929
name = "uuid"
3030
readme = "README.md"
3131
repository = "https://github.com/uuid-rs/uuid"
32-
version = "1.20.0" # remember to update html_root_url in lib.rs
32+
version = "1.21.0" # remember to update html_root_url in lib.rs
3333
rust-version = "1.85.0"
3434

3535
[package.metadata.docs.rs]
@@ -86,7 +86,7 @@ borsh = ["dep:borsh", "dep:borsh-derive"]
8686

8787
# Public: Used in trait impls on `Uuid`
8888
[dependencies.bytemuck]
89-
version = "1.20.0"
89+
version = "1.21.0"
9090
optional = true
9191
features = ["derive"]
9292

@@ -140,7 +140,7 @@ optional = true
140140
[target.'cfg(all(target_arch = "wasm32", any(target_os = "unknown", target_os = "none")))'.dependencies.uuid-rng-internal-lib]
141141
# Work-around lack of support for both `dep:x` and `x/` in MSRV
142142
package = "uuid-rng-internal"
143-
version = "1.20.0"
143+
version = "1.21.0"
144144
path = "rng"
145145
optional = true
146146

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Add the following to your `Cargo.toml`:
2828

2929
```toml
3030
[dependencies.uuid]
31-
version = "1.20.0"
31+
version = "1.21.0"
3232
# Lets you generate random UUIDs
3333
features = [
3434
"v4",
@@ -64,11 +64,11 @@ assert_eq!(Some(Version::Random), my_uuid.get_version());
6464
If you'd like to parse UUIDs _really_ fast, check out the [`uuid-simd`](https://github.com/nugine/uuid-simd)
6565
library.
6666

67-
For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.20.0/uuid).
67+
For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.21.0/uuid).
6868

6969
## References
7070

71-
* [`uuid` library docs](https://docs.rs/uuid/1.20.0/uuid).
71+
* [`uuid` library docs](https://docs.rs/uuid/1.21.0/uuid).
7272
* [Wikipedia: Universally Unique Identifier](http://en.wikipedia.org/wiki/Universally_unique_identifier).
7373
* [RFC 9562: Universally Unique IDentifiers (UUID)](https://www.ietf.org/rfc/rfc9562.html).
7474

rng/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uuid-rng-internal"
3-
version = "1.20.0"
3+
version = "1.21.0"
44
edition = "2021"
55
authors = [
66
"uuid-rs contributors"

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
//!
3939
//! ```toml
4040
//! [dependencies.uuid]
41-
//! version = "1.20.0"
41+
//! version = "1.21.0"
4242
//! # Lets you generate random UUIDs
4343
//! features = [
4444
//! "v4",
@@ -138,7 +138,7 @@
138138
//!
139139
//! ```toml
140140
//! [dependencies.uuid]
141-
//! version = "1.20.0"
141+
//! version = "1.21.0"
142142
//! features = [
143143
//! "v4",
144144
//! "v7",
@@ -153,7 +153,7 @@
153153
//!
154154
//! ```toml
155155
//! [dependencies.uuid]
156-
//! version = "1.20.0"
156+
//! version = "1.21.0"
157157
//! default-features = false
158158
//! ```
159159
//!
@@ -211,7 +211,7 @@
211211
#![doc(
212212
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
213213
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
214-
html_root_url = "https://docs.rs/uuid/1.20.0"
214+
html_root_url = "https://docs.rs/uuid/1.21.0"
215215
)]
216216

217217
#[cfg(any(feature = "std", test))]

0 commit comments

Comments
 (0)