Skip to content

Commit 7fb64f7

Browse files
committed
prepare for 1.15.1 release
1 parent f05b6df commit 7fb64f7

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

Cargo.toml

+4-4
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.15.0" # remember to update html_root_url in lib.rs
32+
version = "1.15.1" # remember to update html_root_url in lib.rs
3333
rust-version = "1.63.0"
3434

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

8585
# Public: Used in trait impls on `Uuid`
8686
[dependencies.bytemuck]
87-
version = "1.15.0"
87+
version = "1.15.1"
8888
optional = true
8989
features = ["derive"]
9090

@@ -135,7 +135,7 @@ optional = true
135135
[target.'cfg(all(target_arch = "wasm32", target_vendor = "unknown", target_os = "unknown"))'.dependencies.uuid-rng-internal-lib]
136136
# Work-around lack of support for both `dep:x` and `x/` in MSRV
137137
package = "uuid-rng-internal"
138-
version = "1.15.0"
138+
version = "1.15.1"
139139
path = "rng"
140140
optional = true
141141

@@ -158,7 +158,7 @@ version = "1"
158158

159159
# Public: Re-exported
160160
[dependencies.uuid-macro-internal]
161-
version = "1.15.0"
161+
version = "1.15.1"
162162
path = "macros"
163163
optional = true
164164

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@ Add the following to your `Cargo.toml`:
2828

2929
```toml
3030
[dependencies.uuid]
31-
version = "1.15.0"
31+
version = "1.15.1"
32+
# Lets you generate random UUIDs
3233
features = [
33-
"v4", # Lets you generate random UUIDs
34+
"v4",
3435
]
3536
```
3637

@@ -63,11 +64,11 @@ assert_eq!(Some(Version::Random), my_uuid.get_version());
6364
If you'd like to parse UUIDs _really_ fast, check out the [`uuid-simd`](https://github.com/nugine/uuid-simd)
6465
library.
6566

66-
For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.15.0/uuid).
67+
For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.15.1/uuid).
6768

6869
## References
6970

70-
* [`uuid` library docs](https://docs.rs/uuid/1.15.0/uuid).
71+
* [`uuid` library docs](https://docs.rs/uuid/1.15.1/uuid).
7172
* [Wikipedia: Universally Unique Identifier](http://en.wikipedia.org/wiki/Universally_unique_identifier).
7273
* [RFC 9562: Universally Unique IDentifiers (UUID)](https://www.ietf.org/rfc/rfc9562.html).
7374

macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uuid-macro-internal"
3-
version = "1.15.0"
3+
version = "1.15.1"
44
edition = "2018"
55
authors = [
66
"QnnOkabayashi"

rng/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uuid-rng-internal"
3-
version = "1.15.0"
3+
version = "1.15.1"
44
edition = "2018"
55
authors = [
66
"uuid-rs contributors"

src/lib.rs

+6-7
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,10 @@
3838
//!
3939
//! ```toml
4040
//! [dependencies.uuid]
41-
//! version = "1.15.0"
41+
//! version = "1.15.1"
42+
//! # Lets you generate random UUIDs
4243
//! features = [
43-
//! "v4", # Lets you generate random UUIDs
44-
//! "fast-rng", # Use a faster (but still sufficiently random) RNG
45-
//! "macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
44+
//! "v4",
4645
//! ]
4746
//! ```
4847
//!
@@ -140,7 +139,7 @@
140139
//!
141140
//! ```toml
142141
//! [dependencies.uuid]
143-
//! version = "1.15.0"
142+
//! version = "1.15.1"
144143
//! features = [
145144
//! "v4",
146145
//! "v7",
@@ -155,7 +154,7 @@
155154
//!
156155
//! ```toml
157156
//! [dependencies.uuid]
158-
//! version = "1.15.0"
157+
//! version = "1.15.1"
159158
//! default-features = false
160159
//! ```
161160
//!
@@ -213,7 +212,7 @@
213212
#![doc(
214213
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
215214
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
216-
html_root_url = "https://docs.rs/uuid/1.15.0"
215+
html_root_url = "https://docs.rs/uuid/1.15.1"
217216
)]
218217

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

0 commit comments

Comments
 (0)