Skip to content

Commit 2fb7c3c

Browse files
committed
set version to 0.1.0-beta
1 parent 747859a commit 2fb7c3c

3 files changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ jobs:
1313
uses: mlugg/setup-zig@v2
1414
- name: Get upx
1515
uses: samyfodil/upx-action@v1.0.3
16-
- name: Install zip
17-
run: sudo apt install -y zip
1816
- name: Run build
1917
run: ./build.sh --release
2018
- name: list bin

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.{
22
.name = .csvcut,
3-
.version = "0.1.0",
3+
.version = "0.1.0-beta",
44
.fingerprint = 0x8035f4e75082840a,
55

66
.dependencies = .{},

src/exitCode.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const std = @import("std");
22

3-
pub const version = "csvcut v0.1";
3+
pub const version = "csvcut v0.1.0-beta";
44

55
pub const ExitCode = enum(u8) {
66
OK,

0 commit comments

Comments
 (0)