Skip to content

Commit 80ec18c

Browse files
committed
prepare for 1.3.4 release
1 parent 4297536 commit 80ec18c

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Cargo.toml

+2-2
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.3.3" # remember to update html_root_url in lib.rs
30+
version = "1.3.4" # remember to update html_root_url in lib.rs
3131

3232
[package.metadata.docs.rs]
3333
rustc-args = ["--cfg", "uuid_unstable"]
@@ -134,7 +134,7 @@ version = "1"
134134
# Use the `macro-diagnostics` feature instead
135135
[dependencies.uuid-macro-internal]
136136
package = "uuid-macro-internal"
137-
version = "1.3.3"
137+
version = "1.3.4"
138138
path = "macros"
139139
optional = true
140140

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Add the following to your `Cargo.toml`:
2929

3030
```toml
3131
[dependencies.uuid]
32-
version = "1.3.3"
32+
version = "1.3.4"
3333
features = [
3434
"v4", # Lets you generate random UUIDs
3535
"fast-rng", # Use a faster (but still sufficiently random) RNG
@@ -66,7 +66,7 @@ assert_eq!(Some(Version::Random), my_uuid.get_version());
6666
If you'd like to parse UUIDs _really_ fast, check out the [`uuid-simd`](https://github.com/nugine/uuid-simd)
6767
library.
6868

69-
For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.3.3/uuid).
69+
For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.3.4/uuid).
7070

7171
## Minimum Supported Rust Version (MSRV)
7272

@@ -75,7 +75,7 @@ CI. It may be bumped in minor releases as necessary.
7575

7676
## References
7777

78-
* [`uuid` library docs](https://docs.rs/uuid/1.3.3/uuid).
78+
* [`uuid` library docs](https://docs.rs/uuid/1.3.4/uuid).
7979
* [Wikipedia: Universally Unique Identifier](http://en.wikipedia.org/wiki/Universally_unique_identifier).
8080
* [RFC4122: A Universally Unique IDentifier (UUID) URN Namespace](http://tools.ietf.org/html/rfc4122).
8181

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

src/lib.rs

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

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

0 commit comments

Comments
 (0)