Skip to content

Commit

Permalink
Merge pull request #777 from uuid-rs/KodrAus-patch-1
Browse files Browse the repository at this point in the history
Finish cut off docs
  • Loading branch information
KodrAus authored Dec 23, 2024
2 parents 4473398 + a486f03 commit 8901919
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ jobs:
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab

- name: Install Rust toolchain
run: rustup update 1.60.0
run: rustup update 1.63.0

- name: Version features
run: cargo +1.60.0 build --manifest-path tests/smoke-test/Cargo.toml
run: cargo +1.63.0 build --manifest-path tests/smoke-test/Cargo.toml

examples:
name: Tests / Examples
Expand All @@ -107,6 +107,11 @@ jobs:
- name: Checkout sources
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab

- name: Install node
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
with:
node-version: '20'

- name: Install
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ name = "uuid"
readme = "README.md"
repository = "https://github.com/uuid-rs/uuid"
version = "1.11.0" # remember to update html_root_url in lib.rs
rust-version = "1.60.0"
rust-version = "1.63.0"

[package.metadata.docs.rs]
rustc-args = ["--cfg", "uuid_unstable"]
Expand Down
3 changes: 2 additions & 1 deletion src/v7.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ impl Uuid {
/// # Examples
///
/// A v7 UUID can be created from a unix [`Timestamp`] plus a 128 bit
/// random number. When supplied as such, the data will be
/// random number. When supplied as such, the data will be combined
/// to ensure uniqueness and sortability at millisecond granularity.
///
/// ```rust
/// # use uuid::{Uuid, Timestamp, NoContext};
Expand Down

0 comments on commit 8901919

Please sign in to comment.