Skip to content

Commit b1cc27a

Browse files
committed
prepare for 1.5.0 release
1 parent b8ebdee commit b1cc27a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ homepage = "https://github.com/uuid-rs/uuid"
2727
name = "uuid"
2828
readme = "README.md"
2929
repository = "https://github.com/uuid-rs/uuid"
30-
version = "1.4.1" # remember to update html_root_url in lib.rs
30+
version = "1.5.0" # remember to update html_root_url in lib.rs
3131
rust-version = "1.57.0"
3232

3333
[package.metadata.docs.rs]
@@ -150,7 +150,7 @@ version = "1"
150150
# Use the `macro-diagnostics` feature instead
151151
[dependencies.uuid-macro-internal]
152152
package = "uuid-macro-internal"
153-
version = "1.4.1"
153+
version = "1.5.0"
154154
path = "macros"
155155
optional = true
156156

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.4.1"
31+
version = "1.5.0"
3232
features = [
3333
"v4", # Lets you generate random UUIDs
3434
"fast-rng", # Use a faster (but still sufficiently random) RNG
@@ -65,11 +65,11 @@ assert_eq!(Some(Version::Random), my_uuid.get_version());
6565
If you'd like to parse UUIDs _really_ fast, check out the [`uuid-simd`](https://github.com/nugine/uuid-simd)
6666
library.
6767

68-
For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.4.1/uuid).
68+
For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.5.0/uuid).
6969

7070
## References
7171

72-
* [`uuid` library docs](https://docs.rs/uuid/1.4.1/uuid).
72+
* [`uuid` library docs](https://docs.rs/uuid/1.5.0/uuid).
7373
* [Wikipedia: Universally Unique Identifier](http://en.wikipedia.org/wiki/Universally_unique_identifier).
7474
* [RFC4122: A Universally Unique IDentifier (UUID) URN Namespace](http://tools.ietf.org/html/rfc4122).
7575

macros/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-macro-internal"
3-
version = "1.4.1"
3+
version = "1.5.0"
44
edition = "2018"
55
authors = [
66
"QnnOkabayashi"

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
//!
4040
//! ```toml
4141
//! [dependencies.uuid]
42-
//! version = "1.4.1"
42+
//! version = "1.5.0"
4343
//! features = [
4444
//! "v4", # Lets you generate random UUIDs
4545
//! "fast-rng", # Use a faster (but still sufficiently random) RNG
@@ -141,7 +141,7 @@
141141
//!
142142
//! ```toml
143143
//! [dependencies.uuid]
144-
//! version = "1.4.1"
144+
//! version = "1.5.0"
145145
//! features = [
146146
//! "v4",
147147
//! "v7",
@@ -156,7 +156,7 @@
156156
//!
157157
//! ```toml
158158
//! [dependencies.uuid]
159-
//! version = "1.4.1"
159+
//! version = "1.5.0"
160160
//! default-features = false
161161
//! ```
162162
//!
@@ -214,7 +214,7 @@
214214
#![doc(
215215
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
216216
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
217-
html_root_url = "https://docs.rs/uuid/1.4.1"
217+
html_root_url = "https://docs.rs/uuid/1.5.0"
218218
)]
219219

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

0 commit comments

Comments
 (0)