File tree 6 files changed +14
-14
lines changed 6 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ homepage = "https://github.com/uuid-rs/uuid"
29
29
name = " uuid"
30
30
readme = " README.md"
31
31
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
33
33
rust-version = " 1.60.0"
34
34
35
35
[package .metadata .docs .rs ]
@@ -149,7 +149,7 @@ version = "1"
149
149
150
150
# Public: Re-exported
151
151
[dependencies .uuid-macro-internal ]
152
- version = " 1.10 .0"
152
+ version = " 1.11 .0"
153
153
path = " macros"
154
154
optional = true
155
155
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Add the following to your `Cargo.toml`:
28
28
29
29
``` toml
30
30
[dependencies .uuid ]
31
- version = " 1.10 .0"
31
+ version = " 1.11 .0"
32
32
features = [
33
33
" v4" , # Lets you generate random UUIDs
34
34
" fast-rng" , # Use a faster (but still sufficiently random) RNG
@@ -65,11 +65,11 @@ assert_eq!(Some(Version::Random), my_uuid.get_version());
65
65
If you'd like to parse UUIDs _ really_ fast, check out the [ ` uuid-simd ` ] ( https://github.com/nugine/uuid-simd )
66
66
library.
67
67
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 ) .
69
69
70
70
## References
71
71
72
- * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.10 .0/uuid ) .
72
+ * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.11 .0/uuid ) .
73
73
* [ Wikipedia: Universally Unique Identifier] ( http://en.wikipedia.org/wiki/Universally_unique_identifier ) .
74
74
* [ RFC 9562: Universally Unique IDentifiers (UUID)] ( https://www.ietf.org/rfc/rfc9562.html ) .
75
75
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " uuid-macro-internal"
3
- version = " 1.10 .0"
3
+ version = " 1.11 .0"
4
4
edition = " 2018"
5
5
authors = [
6
6
" QnnOkabayashi"
Original file line number Diff line number Diff line change @@ -909,15 +909,15 @@ impl Builder {
909
909
#[ doc( hidden) ]
910
910
impl Builder {
911
911
#[ deprecated(
912
- since = "1.10 .0" ,
912
+ since = "1.11 .0" ,
913
913
note = "use `Builder::from_gregorian_timestamp(ticks, counter, node_id)`"
914
914
) ]
915
915
pub const fn from_rfc4122_timestamp ( ticks : u64 , counter : u16 , node_id : & [ u8 ; 6 ] ) -> Self {
916
916
Builder :: from_gregorian_timestamp ( ticks, counter, node_id)
917
917
}
918
918
919
919
#[ deprecated(
920
- since = "1.10 .0" ,
920
+ since = "1.11 .0" ,
921
921
note = "use `Builder::from_sorted_gregorian_timestamp(ticks, counter, node_id)`"
922
922
) ]
923
923
pub const fn from_sorted_rfc4122_timestamp (
Original file line number Diff line number Diff line change 38
38
//!
39
39
//! ```toml
40
40
//! [dependencies.uuid]
41
- //! version = "1.10 .0"
41
+ //! version = "1.11 .0"
42
42
//! features = [
43
43
//! "v4", # Lets you generate random UUIDs
44
44
//! "fast-rng", # Use a faster (but still sufficiently random) RNG
138
138
//!
139
139
//! ```toml
140
140
//! [dependencies.uuid]
141
- //! version = "1.10 .0"
141
+ //! version = "1.11 .0"
142
142
//! features = [
143
143
//! "v4",
144
144
//! "v7",
153
153
//!
154
154
//! ```toml
155
155
//! [dependencies.uuid]
156
- //! version = "1.10 .0"
156
+ //! version = "1.11 .0"
157
157
//! default-features = false
158
158
//! ```
159
159
//!
211
211
#![ doc(
212
212
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
213
213
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"
215
215
) ]
216
216
217
217
#[ cfg( any( feature = "std" , test) ) ]
Original file line number Diff line number Diff line change @@ -165,12 +165,12 @@ impl Timestamp {
165
165
166
166
#[ doc( hidden) ]
167
167
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)`" ) ]
169
169
pub const fn from_rfc4122 ( ticks : u64 , counter : u16 ) -> Self {
170
170
Timestamp :: from_gregorian ( ticks, counter)
171
171
}
172
172
173
- #[ deprecated( since = "1.10 .0" , note = "use `Timestamp::to_gregorian()`" ) ]
173
+ #[ deprecated( since = "1.11 .0" , note = "use `Timestamp::to_gregorian()`" ) ]
174
174
pub const fn to_rfc4122 ( & self ) -> ( u64 , u16 ) {
175
175
self . to_gregorian ( )
176
176
}
You can’t perform that action at this time.
0 commit comments