Skip to content

Commit 0236038

Browse files
Pin zig version to stable release
1 parent 84326af commit 0236038

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
submodules: true
1919
- uses: goto-bus-stop/setup-zig@v2
2020
with:
21-
version: master
21+
version: 0.11.0
2222
- name: Build
2323
run: zig build test

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
![CI](https://github.com/ziglibs/zig-string-searching/workflows/CI/badge.svg)
44

55
Implementation of some string-search algorithms in
6-
[zig](https://ziglang.org).
6+
[zig](https://ziglang.org). Compatible with zig v0.11.0.
77

88
### Boyer-Moore string searching
99

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pub fn build(b: *Builder) void {
44
const target = b.standardTargetOptions(.{});
55
const optimize = b.standardOptimizeOption(.{});
66

7-
var main_tests = b.addTest(.{
7+
const main_tests = b.addTest(.{
88
.root_source_file = .{ .path = "src/main.zig" },
99
.target = target,
1010
.optimize = optimize,

0 commit comments

Comments
 (0)