Skip to content

Commit

Permalink
bump version to 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
18alantom committed Jun 16, 2024
1 parent 4c628f3 commit d499660
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/args.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.{
.name = "fex",
.version = "0.0.1",
.version = "0.0.2",
.minimum_zig_version = "0.12.0",
.dependencies = .{
// libc
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -euo pipefail

readonly version=0.0.1
readonly version=0.0.2
readonly base_dir=$(pwd)
untar_dir=""

Expand Down
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d499660

Please sign in to comment.