Skip to content

Commit 9712566

Browse files
committed
chores: update to zip.zig v0.3.3
1 parent 5d1def9 commit 9712566

File tree

4 files changed

+5
-11
lines changed

4 files changed

+5
-11
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: mlugg/setup-zig@v2
1414
with:
15-
version: "0.15.1"
15+
version: "0.15.2"
1616
- run: zig fmt --check *.zig src/*.zig
1717

1818
install-sh:
@@ -40,6 +40,6 @@ jobs:
4040
- uses: actions/checkout@v4
4141
- uses: mlugg/setup-zig@v2
4242
with:
43-
version: "0.15.1"
43+
version: "0.15.2"
4444
- run: zig build -Dtarget=${{ matrix.target }}
4545
- run: zig build test

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,6 @@ zig build --release=safe
7676
- You will have `zigverm` and `zig` in `zig-out/bin/` directory
7777
- Lastly follow the same steps [for windows](#for-windows)
7878

79-
#### Note for Zig >= v0.14
80-
There have been some API changes in Zig v0.14 (not released yet) which makes zigverm fail
81-
to compile on these versions of Zig. All the changes required to fix this is issue is being
82-
tracked in [this](https://github.com/AMythicDev/zigverm/pull/2) PR. It will be merged into
83-
main once this version of Zig comes out.
84-
8579
## Features
8680

8781
- [x] Install versions (master, stable, x.y x.y.z)

build.zig.zon

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
.version = "0.7.1",
44
.dependencies = .{
55
.zip = .{
6-
.url = "https://github.com/AMythicDev/zip.zig/archive/refs/tags/v0.3.2.tar.gz",
7-
.hash = "zip-0.3.1-eQGR_6lRAAA6A6VZbcU__PWDx7_dFfuwRwCTtKOnxF_9",
6+
.url = "https://github.com/AMythicDev/zip.zig/archive/refs/tags/v0.3.3.tar.gz",
7+
.hash = "zip-0.3.3-eQGR_2pSAABP64MaMedp7ZYvEs2Nb9ODQgW0xdPJmWIX",
88
},
99
},
1010
.minimum_zig_version = "0.15.1",

src/main.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ fn show_info(alloc: Allocator, cp: CommonPaths) !void {
149149

150150
const active_version = (try overrides.active_version(dir_to_check));
151151

152-
std.debug.print("Active version: {s} (from '{s}')\n\n", .{ active_version.ver, active_version.from });
152+
std.debug.print("Active version: {s} (override '{s}')\n\n", .{ active_version.ver, active_version.from });
153153
std.debug.print("Installed releases:\n\n", .{});
154154

155155
var n: u8 = 1;

0 commit comments

Comments
 (0)