diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-02-04 22:56:40 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-02-04 22:56:40 +0900 |
| commit | 07dde505fd29e41d77cfb6e2c58c3fcf6fa24ab5 (patch) | |
| tree | ea2bc2da7c20e4d68e43c0ea65785f88b4eae7a6 /scripts | |
| parent | 0913602cf65a0d39c0391705be3552f80b46c8ee (diff) | |
| download | kioku-0.4.3.tar.gz kioku-0.4.3.tar.zst kioku-0.4.3.zip | |
chore: bump version to v0.4.3v0.4.3
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/bump-version.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/bump-version.sh b/scripts/bump-version.sh new file mode 100755 index 0000000..7f28180 --- /dev/null +++ b/scripts/bump-version.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +set -euo pipefail + +VERSION="$1" + +sed -i 's/"version": ".*"/"version": "'$VERSION'"/' package.json +git add package.json +git commit -m "chore: bump version to v$VERSION" +git tag "v$VERSION" + +echo "Bumped to v$VERSION" |
