Skip to content

Commit 1cf1433

Browse files
authored
Merge pull request #795 from uuid-rs/cargo/1.13.0
Prepare for 1.13.0 release
2 parents 6494c4b + ded7a1e commit 1cf1433

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

Cargo.toml

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

3535
[package.metadata.docs.rs]
@@ -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.12.1"
138+
version = "1.13.0"
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.12.1"
161+
version = "1.13.0"
162162
path = "macros"
163163
optional = true
164164

README.md

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

7070
## References
7171

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

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.12.1"
3+
version = "1.13.0"
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.12.1"
3+
version = "1.13.0"
44
edition = "2018"
55
authors = [
66
"uuid-rs contributors"

src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
//!
3939
//! ```toml
4040
//! [dependencies.uuid]
41-
//! version = "1.12.1"
41+
//! version = "1.13.0"
4242
//! features = [
4343
//! "v4", # Lets you generate random UUIDs
4444
//! "fast-rng", # Use a faster (but still sufficiently random) RNG
@@ -138,7 +138,7 @@
138138
//!
139139
//! ```toml
140140
//! [dependencies.uuid]
141-
//! version = "1.12.1"
141+
//! version = "1.13.0"
142142
//! features = [
143143
//! "v4",
144144
//! "v7",
@@ -153,7 +153,7 @@
153153
//!
154154
//! ```toml
155155
//! [dependencies.uuid]
156-
//! version = "1.12.1"
156+
//! version = "1.13.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.12.1"
214+
html_root_url = "https://docs.rs/uuid/1.13.0"
215215
)]
216216

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

0 commit comments

Comments
 (0)