File tree Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 29
29
working-directory : " zig"
30
30
strategy :
31
31
matrix :
32
- os : [macos-13, macos-latest, ubuntu-20.04, ubuntu- latest]
32
+ os : [macos-13, macos-latest, ubuntu-latest]
33
33
runs-on : ${{ matrix.os }}
34
34
steps :
35
35
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change 6
6
//
7
7
// It is redundant to include "zig" in this name because it is already
8
8
// within the Zig package namespace.
9
- .name = "kcl-lib-zig" ,
9
+ // https://github.com/ziglang/zig/issues/23104
10
+ .name = .kcl_lib_zig ,
10
11
11
12
// This is a [Semantic Version](https://semver.org/).
12
13
// In a future version of Zig it will be used for package deduplication.
13
- .version = "0.11.1" ,
14
+ .version = "0.11.2" ,
15
+
16
+ // Together with name, this represents a globally unique package
17
+ // identifier. This field is generated by the Zig toolchain when the
18
+ // package is first created, and then *never changes*. This allows
19
+ // unambiguous detection of one package being an updated version of
20
+ // another.
21
+ //
22
+ // When forking a Zig project, this id should be regenerated (delete the
23
+ // field and run `zig build`) if the upstream project is still maintained.
24
+ // Otherwise, the fork is *hostile*, attempting to take control over the
25
+ // original project's identity. Thus it is recommended to leave the comment
26
+ // on the following line intact, so that it shows up in code reviews that
27
+ // modify the field.
28
+ // https://github.com/ziglang/zig/issues/23104
29
+ .fingerprint = 0x390d0670798df8c1 , // Changing this has security and trust implications.
14
30
15
31
// This field is optional.
16
32
// This is currently advisory only; Zig does not yet do anything
You can’t perform that action at this time.
0 commit comments