Skip to content

Commit 4473398

Browse files
authored
Merge pull request #772 from uuid-rs/cargo/1.11.0
Prepare for 1.11.0 release
2 parents d9b34e7 + 59fbb1e commit 4473398

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

Cargo.toml

Lines changed: 2 additions & 2 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.10.0" # remember to update html_root_url in lib.rs
32+
version = "1.11.0" # remember to update html_root_url in lib.rs
3333
rust-version = "1.60.0"
3434

3535
[package.metadata.docs.rs]
@@ -149,7 +149,7 @@ version = "1"
149149

150150
# Public: Re-exported
151151
[dependencies.uuid-macro-internal]
152-
version = "1.10.0"
152+
version = "1.11.0"
153153
path = "macros"
154154
optional = true
155155

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

7070
## References
7171

72-
* [`uuid` library docs](https://docs.rs/uuid/1.10.0/uuid).
72+
* [`uuid` library docs](https://docs.rs/uuid/1.11.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

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.10.0"
3+
version = "1.11.0"
44
edition = "2018"
55
authors = [
66
"QnnOkabayashi"

src/builder.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -909,15 +909,15 @@ impl Builder {
909909
#[doc(hidden)]
910910
impl Builder {
911911
#[deprecated(
912-
since = "1.10.0",
912+
since = "1.11.0",
913913
note = "use `Builder::from_gregorian_timestamp(ticks, counter, node_id)`"
914914
)]
915915
pub const fn from_rfc4122_timestamp(ticks: u64, counter: u16, node_id: &[u8; 6]) -> Self {
916916
Builder::from_gregorian_timestamp(ticks, counter, node_id)
917917
}
918918

919919
#[deprecated(
920-
since = "1.10.0",
920+
since = "1.11.0",
921921
note = "use `Builder::from_sorted_gregorian_timestamp(ticks, counter, node_id)`"
922922
)]
923923
pub const fn from_sorted_rfc4122_timestamp(

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.10.0"
41+
//! version = "1.11.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.10.0"
141+
//! version = "1.11.0"
142142
//! features = [
143143
//! "v4",
144144
//! "v7",
@@ -153,7 +153,7 @@
153153
//!
154154
//! ```toml
155155
//! [dependencies.uuid]
156-
//! version = "1.10.0"
156+
//! version = "1.11.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.10.0"
214+
html_root_url = "https://docs.rs/uuid/1.11.0"
215215
)]
216216

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

src/timestamp.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,12 @@ impl Timestamp {
165165

166166
#[doc(hidden)]
167167
impl Timestamp {
168-
#[deprecated(since = "1.10.0", note = "use `Timestamp::from_gregorian(ticks, counter)`")]
168+
#[deprecated(since = "1.11.0", note = "use `Timestamp::from_gregorian(ticks, counter)`")]
169169
pub const fn from_rfc4122(ticks: u64, counter: u16) -> Self {
170170
Timestamp::from_gregorian(ticks, counter)
171171
}
172172

173-
#[deprecated(since = "1.10.0", note = "use `Timestamp::to_gregorian()`")]
173+
#[deprecated(since = "1.11.0", note = "use `Timestamp::to_gregorian()`")]
174174
pub const fn to_rfc4122(&self) -> (u64, u16) {
175175
self.to_gregorian()
176176
}

0 commit comments

Comments
 (0)