Skip to content

Commit 1cd7be1

Browse files
committed
bump v
1 parent 755596a commit 1cd7be1

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Taskfile.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@ tasks:
2525
NEW_PATCH=$((PATCH + 1))
2626
NEW_VERSION="$MAJOR.$MINOR.$NEW_PATCH"
2727
28-
perl -i -pe "s/version = \"[0-9]+\.[0-9]+\.[0-9]+\"/version = \"$NEW_VERSION\"/" apps/desktop/src-tauri/Cargo.toml
29-
perl -i -pe "s/\"version\": \"[0-9]+\.[0-9]+\.[0-9]+\"/\"version\": \"$NEW_VERSION\"/" apps/desktop/src-tauri/tauri.conf.json
28+
echo "Updating version from $CURRENT_VERSION to $NEW_VERSION"
29+
30+
perl -i -pe "s/^version = \"[0-9]+\.[0-9]+\.[0-9]+\"/version = \"$NEW_VERSION\"/ if \$. < 10" apps/desktop/src-tauri/Cargo.toml
31+
perl -i -pe "s/^ \"version\": \"[0-9]+\.[0-9]+\.[0-9]+\"/ \"version\": \"$NEW_VERSION\"/ if \$. < 10" apps/desktop/src-tauri/tauri.conf.json
3032
3133
i18n:
3234
cmds:

apps/desktop/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "desktop"
3-
version = "0.0.28"
3+
version = "0.0.29"
44
authors = ["you"]
55
edition = "2021"
66
description = "Hyprnote Desktop App"

apps/desktop/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
3-
"version": "0.0.28",
3+
"version": "0.0.29",
44
"productName": "Hyprnote Dev",
55
"mainBinaryName": "Hyprnote Dev",
66
"identifier": "com.hyprnote.dev",

0 commit comments

Comments
 (0)