aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-02-08 21:28:19 +0900
committernsfisis <nsfisis@gmail.com>2026-02-08 21:28:19 +0900
commitb0a36f221338291a47ee0ad61b545cfbccc1b1b9 (patch)
treee3d156fbea810efc0dc3cee157deebe34ebf2fad
parent5c1fb77776f0cf3647a7f43a0f5a6b254d2f97ad (diff)
downloadkioku-0.4.6.tar.gz
kioku-0.4.6.tar.zst
kioku-0.4.6.zip
feat: bump version to v0.4.6v0.4.6
-rw-r--r--package.json2
-rwxr-xr-xscripts/bump-version.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json
index a59c030..ad77c2e 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "kioku",
- "version": "0.4.5",
+ "version": "0.4.6",
"description": "An Anki clone",
"main": "src/server/index.ts",
"scripts": {
diff --git a/scripts/bump-version.sh b/scripts/bump-version.sh
index 7f28180..83f6c92 100755
--- a/scripts/bump-version.sh
+++ b/scripts/bump-version.sh
@@ -6,7 +6,7 @@ VERSION="$1"
sed -i 's/"version": ".*"/"version": "'$VERSION'"/' package.json
git add package.json
-git commit -m "chore: bump version to v$VERSION"
+git commit -m "feat: bump version to v$VERSION"
git tag "v$VERSION"
echo "Bumped to v$VERSION"