diff options
| -rw-r--r-- | package.json | 2 | ||||
| -rwxr-xr-x | scripts/bump-version.sh | 2 |
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" |
