We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 747859a commit 2fb7c3cCopy full SHA for 2fb7c3c
3 files changed
.github/workflows/main.yml
@@ -13,8 +13,6 @@ jobs:
13
uses: mlugg/setup-zig@v2
14
- name: Get upx
15
uses: samyfodil/upx-action@v1.0.3
16
- - name: Install zip
17
- run: sudo apt install -y zip
18
- name: Run build
19
run: ./build.sh --release
20
- name: list bin
build.zig.zon
@@ -1,6 +1,6 @@
1
.{
2
.name = .csvcut,
3
- .version = "0.1.0",
+ .version = "0.1.0-beta",
4
.fingerprint = 0x8035f4e75082840a,
5
6
.dependencies = .{},
src/exitCode.zig
const std = @import("std");
-pub const version = "csvcut v0.1";
+pub const version = "csvcut v0.1.0-beta";
pub const ExitCode = enum(u8) {
OK,
0 commit comments