Skip to content

Commit

Permalink
Merge pull request #719 from uuid-rs/cargo/1.6.0
Browse files Browse the repository at this point in the history
Prepare for 1.6.0 release
  • Loading branch information
KodrAus committed Nov 19, 2023
2 parents 9787ea1 + 2433066 commit 4609e61
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Expand Up @@ -27,7 +27,7 @@ homepage = "https://github.com/uuid-rs/uuid"
name = "uuid"
readme = "README.md"
repository = "https://github.com/uuid-rs/uuid"
version = "1.5.0" # remember to update html_root_url in lib.rs
version = "1.6.0" # remember to update html_root_url in lib.rs
rust-version = "1.60.0"

[package.metadata.docs.rs]
Expand Down Expand Up @@ -150,7 +150,7 @@ version = "1"
# Use the `macro-diagnostics` feature instead
[dependencies.uuid-macro-internal]
package = "uuid-macro-internal"
version = "1.5.0"
version = "1.6.0"
path = "macros"
optional = true

Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -28,7 +28,7 @@ Add the following to your `Cargo.toml`:

```toml
[dependencies.uuid]
version = "1.5.0"
version = "1.6.0"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
Expand Down Expand Up @@ -65,11 +65,11 @@ assert_eq!(Some(Version::Random), my_uuid.get_version());
If you'd like to parse UUIDs _really_ fast, check out the [`uuid-simd`](https://github.com/nugine/uuid-simd)
library.

For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.5.0/uuid).
For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.6.0/uuid).

## References

* [`uuid` library docs](https://docs.rs/uuid/1.5.0/uuid).
* [`uuid` library docs](https://docs.rs/uuid/1.6.0/uuid).
* [Wikipedia: Universally Unique Identifier](http://en.wikipedia.org/wiki/Universally_unique_identifier).
* [RFC4122: A Universally Unique IDentifier (UUID) URN Namespace](http://tools.ietf.org/html/rfc4122).

Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "uuid-macro-internal"
version = "1.5.0"
version = "1.6.0"
edition = "2018"
authors = [
"QnnOkabayashi"
Expand Down
14 changes: 7 additions & 7 deletions src/lib.rs
Expand Up @@ -39,7 +39,7 @@
//!
//! ```toml
//! [dependencies.uuid]
//! version = "1.5.0"
//! version = "1.6.0"
//! features = [
//! "v4", # Lets you generate random UUIDs
//! "fast-rng", # Use a faster (but still sufficiently random) RNG
Expand Down Expand Up @@ -80,6 +80,9 @@
//! * `v3` - Version 3 UUIDs based on the MD5 hash of some data.
//! * `v4` - Version 4 UUIDs with random data.
//! * `v5` - Version 5 UUIDs based on the SHA1 hash of some data.
//! * `v6` - Version 6 UUIDs using a timestamp and monotonic counter.
//! * `v7` - Version 7 UUIDs using a Unix timestamp.
//! * `v8` - Version 8 UUIDs using user-defined data.
//!
//! Versions that are in draft are also supported. See the _unstable features_ section for details.
//!
Expand Down Expand Up @@ -115,9 +118,6 @@
//! Some features are unstable. They may be incomplete or depend on other
//! unstable libraries. These include:
//!
//! * `v6` - Version 6 UUIDs using a timestamp and monotonic counter.
//! * `v7` - Version 7 UUIDs using a Unix timestamp.
//! * `v8` - Version 8 UUIDs using user-defined data.
//! * `zerocopy` - adds support for zero-copy deserialization using the
//! `zerocopy` library.
//! * `borsh` - adds the ability to serialize and deserialize a UUID using
Expand All @@ -141,7 +141,7 @@
//!
//! ```toml
//! [dependencies.uuid]
//! version = "1.5.0"
//! version = "1.6.0"
//! features = [
//! "v4",
//! "v7",
Expand All @@ -156,7 +156,7 @@
//!
//! ```toml
//! [dependencies.uuid]
//! version = "1.5.0"
//! version = "1.6.0"
//! default-features = false
//! ```
//!
Expand Down Expand Up @@ -214,7 +214,7 @@
#![doc(
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
html_root_url = "https://docs.rs/uuid/1.5.0"
html_root_url = "https://docs.rs/uuid/1.6.0"
)]

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

0 comments on commit 4609e61

Please sign in to comment.