Skip to content

Commit 0b7d389

Browse files
committed
update to Zig 0.14.0
1 parent 540c3c4 commit 0b7d389

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

build.zig.zon

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
.{
2-
.name = "zigtools-website",
2+
.name = .zigtools_website,
33
.version = "0.1.0",
4-
.minimum_zig_version = "0.13.0",
4+
.minimum_zig_version = "0.14.0",
55
.dependencies = .{
66
.zine = .{
7-
.url = "git+https://github.com/kristoff-it/zine#f7b8e859d64a9dde0fe23bd92286bca484e0e01c",
8-
.hash = "12201ae5d960f4322959a7d15719511886d7a52d3f05cb48931b603838731d15a862",
7+
.url = "git+https://github.com/kristoff-it/zine#92ef5f930a65773eb7730f714830a70c9dfebf73",
8+
.hash = "zine-0.0.0-ou6nID_kBQDh3bzW8TpyF5-jtomG90qD3VLTRLb_KB3G",
99
},
1010
},
1111
.paths = .{
@@ -17,4 +17,5 @@
1717
"LICENSE",
1818
"README.md",
1919
},
20+
.fingerprint = 0xad65ca8d4ac7b701, // Changing this has security and trust implications.
2021
}

layouts/templates/with-zls-docs.shtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,15 +182,15 @@
182182
</header>
183183
<super>
184184
<nav id="footer">
185-
<ctx :if="$page.prevPage()">
185+
<ctx :if="$page.prevPage?()">
186186
<a href="$if.link()" style="margin-right: auto;">
187187
<p>
188188
189189
<span class="title" :text="$if.title"></span>
190190
</p>
191191
</a>
192192
</ctx>
193-
<ctx :if="$page.nextPage()">
193+
<ctx :if="$page.nextPage?()">
194194
<a href="$if.link()" style="margin-left: auto; text-align: right;">
195195
<p>
196196
<span class="title" :text="$if.title"></span>

layouts/zls-release.shtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@
4646
<div id="content">
4747
<main id="page" :html="$page.content()"></main>
4848
<nav id="footer">
49-
<ctx :if="$page.prevPage()">
49+
<ctx :if="$page.prevPage?()">
5050
<a href="$if.link()" style="margin-right: auto;">
5151
<p>
5252
5353
<span class="title" :text="$if.title"></span>
5454
</p>
5555
</a>
5656
</ctx>
57-
<ctx :if="$page.nextPage()">
57+
<ctx :if="$page.nextPage?()">
5858
<a href="$if.link()" style="margin-left: auto; text-align: right;">
5959
<p>
6060
<span class="title" :text="$if.title"></span>

0 commit comments

Comments
 (0)