diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 943ff03..ac66417 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: - name: Setup Zig uses: mlugg/setup-zig@v1 with: - version: "0.13.0" + version: "0.14.0" - name: Check formatting run: zig fmt --check . diff --git a/build.zig.zon b/build.zig.zon index f80cf63..7a56081 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,8 @@ .{ - .name = "typeid", - .version = "0.2.0", + .name = .typeid, + .version = "0.2.1", + .fingerprint = 0xe70b032c62449aa, + .minimum_zig_version = "0.14.0", .paths = .{ "src", "build.zig", diff --git a/src/uuid/uuid.zig b/src/uuid/uuid.zig index 14a27b7..b8adf97 100644 --- a/src/uuid/uuid.zig +++ b/src/uuid/uuid.zig @@ -12,7 +12,7 @@ const std = @import("std"); const math = std.math; const time = std.time; -const Random = std.rand.Random; +const Random = std.Random; /// A UUIDv7 value represented as a 128-bit unsigned integer pub const Uuid = u128;