From d499660f34e83c419f413fcf149e69ff19af262e Mon Sep 17 00:00:00 2001 From: 18alantom <2.alan.tom@gmail.com> Date: Sun, 16 Jun 2024 18:27:20 +0530 Subject: [PATCH] bump version to 0.0.2 --- app/args.zig | 2 +- build.zig.zon | 2 +- install.sh | 2 +- release.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/args.zig b/app/args.zig index 0477165..83b7bad 100644 --- a/app/args.zig +++ b/app/args.zig @@ -10,7 +10,7 @@ const process = std.process; const TimeType = Stat.TimeType; const Config = App.Config; -const version = "0.0.1"; +const version = "0.0.2"; const eql = utils.eql; diff --git a/build.zig.zon b/build.zig.zon index 968cf7d..fd5c7d9 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = "fex", - .version = "0.0.1", + .version = "0.0.2", .minimum_zig_version = "0.12.0", .dependencies = .{ // libc diff --git a/install.sh b/install.sh index f74cf93..42b0900 100755 --- a/install.sh +++ b/install.sh @@ -2,7 +2,7 @@ set -euo pipefail -readonly version=0.0.1 +readonly version=0.0.2 readonly base_dir=$(pwd) untar_dir="" diff --git a/release.sh b/release.sh index 20856e5..b0d5323 100755 --- a/release.sh +++ b/release.sh @@ -61,7 +61,7 @@ function commit_and_push_version_bump() { fi } -function create_and_push_tag() { +function create_and_push_tags() { if [[ $(ask "Create tag v$version?") == "y" ]]; then git tag v$version else