Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: uuid-rs/uuid
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.3.0
Choose a base ref
...
head repository: uuid-rs/uuid
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.3.1
Choose a head ref
  • 8 commits
  • 4 files changed
  • 3 contributors

Commits on Mar 22, 2023

  1. Update syn requirement from 1.0.80 to 2.0.5

    Updates the requirements on [syn](https://github.com/dtolnay/syn) to permit the latest version.
    - [Release notes](https://github.com/dtolnay/syn/releases)
    - [Commits](dtolnay/syn@1.0.80...2.0.5)
    
    ---
    updated-dependencies:
    - dependency-name: syn
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Mar 22, 2023
    Copy the full SHA
    1795337 View commit details

Commits on Mar 23, 2023

  1. Merge pull request #663 from uuid-rs/dependabot/cargo/syn-2.0.5

    Update syn requirement from 1.0.80 to 2.0.5
    KodrAus authored Mar 23, 2023
    Copy the full SHA
    efa4686 View commit details

Commits on Apr 3, 2023

  1. Update windows-sys requirement from 0.45.0 to 0.48.0

    Updates the requirements on [windows-sys](https://github.com/microsoft/windows-rs) to permit the latest version.
    - [Release notes](https://github.com/microsoft/windows-rs/releases)
    - [Commits](microsoft/windows-rs@0.45.0...0.48.0)
    
    ---
    updated-dependencies:
    - dependency-name: windows-sys
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Apr 3, 2023
    Copy the full SHA
    faac14c View commit details

Commits on Apr 5, 2023

  1. Merge pull request #665 from uuid-rs/dependabot/cargo/windows-sys-0.48.0

    Update windows-sys requirement from 0.45.0 to 0.48.0
    KodrAus authored Apr 5, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b111b12 View commit details

Commits on Apr 9, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8ccdf67 View commit details
  2. Merge pull request #666 from uuid-rs/KodrAus-patch-2

    remove some extra chars in a comment
    KodrAus authored Apr 9, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ee19f3d View commit details
  3. prepare for 1.3.1 release

    KodrAus committed Apr 9, 2023
    Copy the full SHA
    a367481 View commit details
  4. Merge pull request #667 from uuid-rs/cargo/1.3.1

    Prepare for 1.3.1 release
    KodrAus authored Apr 9, 2023
    Copy the full SHA
    87082b9 View commit details
Showing with 13 additions and 13 deletions.
  1. +4 −4 Cargo.toml
  2. +3 −3 README.md
  3. +2 −2 macros/Cargo.toml
  4. +4 −4 src/lib.rs
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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.3.0" # remember to update html_root_url in lib.rs
version = "1.3.1" # remember to update html_root_url in lib.rs

[package.metadata.docs.rs]
rustc-args = ["--cfg", "uuid_unstable"]
@@ -52,7 +52,7 @@ default = ["std"]
std = []
macro-diagnostics = ["uuid-macro-internal"]

# NOTE: When adding new features, check the `ci.yml` workflow ..
# NOTE: When adding new features, check the `ci.yml` workflow
# and include them where necessary (you can follow along with existing features)
v1 = ["atomic"]
v3 = ["md5"]
@@ -134,7 +134,7 @@ version = "1"
# Use the `macro-diagnostics` feature instead
[dependencies.uuid-macro-internal]
package = "uuid-macro-internal"
version = "1.3.0"
version = "1.3.1"
path = "macros"
optional = true

@@ -175,7 +175,7 @@ version = "1.0.52"
version = "1"

[target.'cfg(windows)'.dev-dependencies.windows-sys]
version = "0.45.0"
version = "0.48.0"
features = ["Win32_System_Com"]

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

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

## Minimum Supported Rust Version (MSRV)

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

## References

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

4 changes: 2 additions & 2 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uuid-macro-internal"
version = "1.3.0"
version = "1.3.1"
edition = "2018"
authors = [
"QnnOkabayashi"
@@ -19,7 +19,7 @@ license = "Apache-2.0 OR MIT"
proc-macro = true

[dependencies.syn]
version = "1.0.80"
version = "2.0.5"

[dependencies.quote]
version = "1.0.10"
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.3.0"
//! version = "1.3.1"
//! features = [
//! "v4", # Lets you generate random UUIDs
//! "fast-rng", # Use a faster (but still sufficiently random) RNG
@@ -138,7 +138,7 @@
//!
//! ```toml
//! [dependencies.uuid]
//! version = "1.3.0"
//! version = "1.3.1"
//! features = [
//! "v4",
//! "v7",
@@ -153,7 +153,7 @@
//!
//! ```toml
//! [dependencies.uuid]
//! version = "1.3.0"
//! version = "1.3.1"
//! default-features = false
//! ```
//!
@@ -211,7 +211,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.3.0"
html_root_url = "https://docs.rs/uuid/1.3.1"
)]

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