Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ homepage = "https://github.com/uuid-rs/uuid"
name = "uuid"
readme = "README.md"
repository = "https://github.com/uuid-rs/uuid"
version = "1.18.0" # remember to update html_root_url in lib.rs
version = "1.18.1" # remember to update html_root_url in lib.rs
rust-version = "1.63.0"

[package.metadata.docs.rs]
Expand Down Expand Up @@ -84,7 +84,7 @@ borsh = ["dep:borsh", "dep:borsh-derive"]

# Public: Used in trait impls on `Uuid`
[dependencies.bytemuck]
version = "1.18.0"
version = "1.18.1"
optional = true
features = ["derive"]

Expand Down Expand Up @@ -138,7 +138,7 @@ optional = true
[target.'cfg(all(target_arch = "wasm32", any(target_os = "unknown", target_os = "none")))'.dependencies.uuid-rng-internal-lib]
# Work-around lack of support for both `dep:x` and `x/` in MSRV
package = "uuid-rng-internal"
version = "1.18.0"
version = "1.18.1"
path = "rng"
optional = true

Expand All @@ -161,7 +161,7 @@ version = "1"

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

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

```toml
[dependencies.uuid]
version = "1.18.0"
version = "1.18.1"
# Lets you generate random UUIDs
features = [
"v4",
Expand Down Expand Up @@ -64,11 +64,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.18.0/uuid).
For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.18.1/uuid).

## References

* [`uuid` library docs](https://docs.rs/uuid/1.18.0/uuid).
* [`uuid` library docs](https://docs.rs/uuid/1.18.1/uuid).
* [Wikipedia: Universally Unique Identifier](http://en.wikipedia.org/wiki/Universally_unique_identifier).
* [RFC 9562: Universally Unique IDentifiers (UUID)](https://www.ietf.org/rfc/rfc9562.html).

Expand Down
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.18.0"
version = "1.18.1"
edition = "2018"
authors = [
"QnnOkabayashi"
Expand Down
2 changes: 1 addition & 1 deletion rng/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uuid-rng-internal"
version = "1.18.0"
version = "1.18.1"
edition = "2018"
authors = [
"uuid-rs contributors"
Expand Down
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
//!
//! ```toml
//! [dependencies.uuid]
//! version = "1.18.0"
//! version = "1.18.1"
//! # Lets you generate random UUIDs
//! features = [
//! "v4",
Expand Down Expand Up @@ -139,7 +139,7 @@
//!
//! ```toml
//! [dependencies.uuid]
//! version = "1.18.0"
//! version = "1.18.1"
//! features = [
//! "v4",
//! "v7",
Expand All @@ -154,7 +154,7 @@
//!
//! ```toml
//! [dependencies.uuid]
//! version = "1.18.0"
//! version = "1.18.1"
//! default-features = false
//! ```
//!
Expand Down Expand Up @@ -212,7 +212,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.18.0"
html_root_url = "https://docs.rs/uuid/1.18.1"
)]

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