Skip to content

Commit 786904e

Browse files
committed
chore: prepare for v0.1.0 release
- Update to Zig 0.16-dev (master) for CI - Use URL-based zig-tls dependency for GitHub Actions builds - Set version to 0.1.0 for initial release - Update minimum_zig_version to 0.16.0-dev
1 parent 1be659c commit 786904e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup Zig
2929
uses: goto-bus-stop/setup-zig@v2
3030
with:
31-
version: 0.15.1
31+
version: master
3232

3333
- name: Build release binary
3434
run: zig build -Doptimize=ReleaseFast

.github/workflows/version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Setup Zig
3535
uses: goto-bus-stop/setup-zig@v2
3636
with:
37-
version: 0.15.1
37+
version: master
3838

3939
- name: Configure Git
4040
run: |

build.zig.zon

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
.name = .mail,
1010
// This is a [Semantic Version](https://semver.org/).
1111
// In a future version of Zig it will be used for package deduplication.
12-
.version = "0.37.0",
12+
.version = "0.1.0",
1313
// Together with name, this represents a globally unique package
1414
// identifier. This field is generated by the Zig toolchain when the
1515
// package is first created, and then *never changes*. This allows
@@ -25,16 +25,16 @@
2525
.fingerprint = 0x5126ac48155415a8, // Changing this has security and trust implications.
2626
// Tracks the earliest Zig version that the package considers to be a
2727
// supported use case.
28-
.minimum_zig_version = "0.15.1",
28+
.minimum_zig_version = "0.16.0-dev",
2929
// This field is optional.
3030
// Each dependency must either provide a `url` and `hash`, or a `path`.
3131
// `zig build --fetch` can be used to fetch all dependencies of a package, recursively.
3232
// Once all dependencies are fetched, `zig build` no longer requires
3333
// internet connectivity.
3434
.dependencies = .{
3535
.tls = .{
36-
// Use local zig-tls which is Zig 0.16 compatible
37-
.path = "../zig-tls",
36+
.url = "https://github.com/zig-utils/zig-tls/archive/64def5ee5b77c28d0ef1c8cc34f06a210c885c09.tar.gz",
37+
.hash = "122036ee4232388773eedbb3ede05f72d2bb9540b9734549e7681aa736bfc223c24d",
3838
},
3939
// See `zig fetch --save <url>` for a command-line interface for adding dependencies.
4040
//.example = .{

0 commit comments

Comments
 (0)