Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 1.7.0 release #728

Merged
merged 1 commit into from
Jan 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
prepare for 1.7.0 release
KodrAus committed Jan 19, 2024
commit 3255b5414b7830ae4726b9e48f31e54d98b3fb3e
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ homepage = "https://github.com/uuid-rs/uuid"
name = "uuid"
readme = "README.md"
repository = "https://github.com/uuid-rs/uuid"
version = "1.6.1" # remember to update html_root_url in lib.rs
version = "1.7.0" # remember to update html_root_url in lib.rs
rust-version = "1.60.0"

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

# Public: Re-exported
[dependencies.uuid-macro-internal]
version = "1.6.1"
version = "1.7.0"
path = "macros"
optional = true

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ Add the following to your `Cargo.toml`:

```toml
[dependencies.uuid]
version = "1.6.1"
version = "1.7.0"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
@@ -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.6.1/uuid).
For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.7.0/uuid).

## References

* [`uuid` library docs](https://docs.rs/uuid/1.6.1/uuid).
* [`uuid` library docs](https://docs.rs/uuid/1.7.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).

2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uuid-macro-internal"
version = "1.6.1"
version = "1.7.0"
edition = "2018"
authors = [
"QnnOkabayashi"
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -39,7 +39,7 @@
//!
//! ```toml
//! [dependencies.uuid]
//! version = "1.6.1"
//! version = "1.7.0"
//! features = [
//! "v4", # Lets you generate random UUIDs
//! "fast-rng", # Use a faster (but still sufficiently random) RNG
@@ -141,7 +141,7 @@
//!
//! ```toml
//! [dependencies.uuid]
//! version = "1.6.1"
//! version = "1.7.0"
//! features = [
//! "v4",
//! "v7",
@@ -156,7 +156,7 @@
//!
//! ```toml
//! [dependencies.uuid]
//! version = "1.6.1"
//! version = "1.7.0"
//! default-features = false
//! ```
//!
@@ -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.6.1"
html_root_url = "https://docs.rs/uuid/1.7.0"
)]

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