Skip to content

Commit 38586c7

Browse files
committed
update to Zig 0.15.1
1 parent f9bf011 commit 38586c7

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
zig-version: [master]
1818
os: [ubuntu-latest, macos-latest, windows-latest]
1919
include:
20-
- zig-version: "0.14.0"
20+
- zig-version: "0.15.1"
2121
os: ubuntu-latest
2222
runs-on: ${{ matrix.os }}
2323
steps:

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ pub fn build(b: *std.Build) void {
8484
.include_path = "libxml/xmlversion.h",
8585
.style = .{ .cmake = upstream.path("include/libxml/xmlversion.h.in") },
8686
}, .{
87-
.VERSION = b.fmt("{}", .{version}),
87+
.VERSION = b.fmt("{f}", .{version}),
8888
.LIBXML_VERSION_NUMBER = @as(i64, version.major * 10000 + version.major * 100 + version.patch),
8989
.LIBXML_VERSION_EXTRA = "",
9090
.WITH_THREADS = threads,

build.zig.zon

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
.{
22
.name = .libxml2,
33
.version = "2.14.3-3",
4-
.minimum_zig_version = "0.14.0",
4+
.minimum_zig_version = "0.15.1",
55
.dependencies = .{
66
.libxml2 = .{
77
.url = "git+https://gitlab.gnome.org/GNOME/libxml2.git?ref=v2.14.3#8d509f483dd5ce268b2fded9c738132c47d820d8",
88
.hash = "N-V-__8AAKECgwELybeTt28_dzxwziqdrHDrIiadVpfYeFbx",
99
},
1010
.zlib = .{
11-
.url = "git+https://github.com/allyourcodebase/zlib#6c72830882690c1eb2567a537525c3f432c1da50",
12-
.hash = "zlib-1.3.1-ZZQ7lVgMAACwO4nUUd8GLhsuQ5JQq_VAhlEiENJTUv6h",
11+
.url = "git+https://github.com/allyourcodebase/zlib.git#61e7df7e996ec5a5f13a653db3c419adb340d6ef",
12+
.hash = "zlib-1.3.1-ZZQ7lbYMAAB1hTSOKSXAKAgHsfDcyWNH_37ojw5WSpgR",
1313
.lazy = true,
1414
},
1515
.libiconv = .{
16-
.url = "git+https://github.com/allyourcodebase/libiconv.git#9def4c8a1743380e85bcedb80f2c15b455e236f3",
17-
.hash = "libiconv-1.18.0-p9sJwWnqAACzVYeWgXB5r5lOQ74XwTPlptixV0JPRO28",
16+
.url = "git+https://github.com/allyourcodebase/libiconv.git#d86666233f4e0045b586060260e8a6093f5cdd8d",
17+
.hash = "libiconv-1.18.0-p9sJwWnqAAAAD_T5JHJ8v9OrgUtLGT6ov322zOnkUkv5",
1818
.lazy = true,
1919
},
2020
.win_iconv = .{

0 commit comments

Comments
 (0)