Skip to content

Commit 286134f

Browse files
committed
prepare for 1.0.0 release
1 parent 43905eb commit 286134f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
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.0.0-alpha.1" # remember to update html_root_url in lib.rs
33+
version = "1.0.0" # remember to update html_root_url in lib.rs
3434

3535
[package.metadata.docs.rs]
3636
features = ["serde", "arbitrary", "slog", "v1", "v3", "v4", "v5"]
@@ -132,7 +132,7 @@ version = "1"
132132
# Use the `macro-diagnostics` feature instead
133133
[dependencies.private_uuid-macro-internal]
134134
package = "uuid-macro-internal"
135-
version = "1.0.0-alpha.1"
135+
version = "1.0.0"
136136
path = "macros"
137137
optional = true
138138

README.md

Lines changed: 3 additions & 3 deletions
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.0.0-alpha.1"
32+
version = "1.0.0"
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.0.0-alpha.1/uuid).
69+
For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.0.0/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.0.0-alpha.1/uuid).
78+
* [`uuid` library docs](https://docs.rs/uuid/1.0.0/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

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.0.0-alpha.1"
3+
version = "1.0.0"
44
edition = "2018"
55
authors = [
66
"QnnOkabayashi"

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
//!
3737
//! ```toml
3838
//! [dependencies.uuid]
39-
//! version = "1.0.0-alpha.1"
39+
//! version = "1.0.0"
4040
//! features = [
4141
//! "v4", # Lets you generate random UUIDs
4242
//! "fast-rng", # Use a faster (but still sufficiently random) RNG
@@ -200,7 +200,7 @@
200200
#![doc(
201201
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
202202
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
203-
html_root_url = "https://docs.rs/uuid/1.0.0-alpha.1"
203+
html_root_url = "https://docs.rs/uuid/1.0.0"
204204
)]
205205

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

0 commit comments

Comments
 (0)