Skip to content

Commit 0f2aaae

Browse files
authored
Merge pull request #747 from uuid-rs/cargo/1.8.0
Prepare for 1.8.0 release
2 parents e4746bc + 01d16c3 commit 0f2aaae

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
@@ -30,7 +30,7 @@ homepage = "https://github.com/uuid-rs/uuid"
3030
name = "uuid"
3131
readme = "README.md"
3232
repository = "https://github.com/uuid-rs/uuid"
33-
version = "1.7.0" # remember to update html_root_url in lib.rs
33+
version = "1.8.0" # remember to update html_root_url in lib.rs
3434
rust-version = "1.60.0"
3535

3636
[package.metadata.docs.rs]
@@ -146,7 +146,7 @@ version = "1"
146146

147147
# Public: Re-exported
148148
[dependencies.uuid-macro-internal]
149-
version = "1.7.0"
149+
version = "1.8.0"
150150
path = "macros"
151151
optional = true
152152

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.7.0"
31+
version = "1.8.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.7.0/uuid).
68+
For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.8.0/uuid).
6969

7070
## References
7171

72-
* [`uuid` library docs](https://docs.rs/uuid/1.7.0/uuid).
72+
* [`uuid` library docs](https://docs.rs/uuid/1.8.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
* [Revision of RFC4122: Universally Unique IDentifiers (UUID)](https://www.ietf.org/archive/id/draft-ietf-uuidrev-rfc4122bis-14.html).

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.7.0"
3+
version = "1.8.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.7.0"
42+
//! version = "1.8.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.7.0"
144+
//! version = "1.8.0"
145145
//! features = [
146146
//! "v4",
147147
//! "v7",
@@ -156,7 +156,7 @@
156156
//!
157157
//! ```toml
158158
//! [dependencies.uuid]
159-
//! version = "1.7.0"
159+
//! version = "1.8.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.7.0"
217+
html_root_url = "https://docs.rs/uuid/1.8.0"
218218
)]
219219

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

0 commit comments

Comments
 (0)