From ee02288be9b343e67bbc3c2566761746fca0b737 Mon Sep 17 00:00:00 2001 From: Anantha Kumaran Date: Sat, 7 Oct 2023 11:38:28 +0530 Subject: [PATCH] bump version --- .github/workflows/linux-app.yml | 6 +++--- CHANGELOG.md | 7 +++++++ cmd/version.go | 2 +- desktop/build/linux/DEBIAN/control | 2 +- desktop/wails.json | 2 +- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/linux-app.yml b/.github/workflows/linux-app.yml index 381a451e..9b0b8b44 100644 --- a/.github/workflows/linux-app.yml +++ b/.github/workflows/linux-app.yml @@ -33,10 +33,10 @@ jobs: wails doctor wails build -tags webkit2_40 cp build/bin/Paisa build/linux/usr/local/bin - cp -r build/linux paisa_0.5.3_amd64 - dpkg --build paisa_0.5.3_amd64 + cp -r build/linux paisa_0.5.4_amd64 + dpkg --build paisa_0.5.4_amd64 cd .. - mv desktop/paisa_0.5.3_amd64.deb paisa-app-linux-amd64.deb + mv desktop/paisa_0.5.4_amd64.deb paisa-app-linux-amd64.deb - name: Release uses: softprops/action-gh-release@v1 with: diff --git a/CHANGELOG.md b/CHANGELOG.md index ff81892b..ff8879d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +### 0.5.4 (2023-10-07) + +* Add calendar view to recurring page +* Support [recurring period](https://paisa.fyi/reference/recurring/#period) configuration +* Support European number format +* Bug fixes + ### 0.5.3 (2023-09-30) * Add Docker Image diff --git a/cmd/version.go b/cmd/version.go index 6dbcbd0e..7cb5a371 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -9,7 +9,7 @@ var versionCmd = &cobra.Command{ Use: "version", Short: "Print the version information", Run: func(cmd *cobra.Command, args []string) { - fmt.Println("Version:", "0.5.3") + fmt.Println("Version:", "0.5.4") }, } diff --git a/desktop/build/linux/DEBIAN/control b/desktop/build/linux/DEBIAN/control index 4004d4f7..b9fa9d0b 100644 --- a/desktop/build/linux/DEBIAN/control +++ b/desktop/build/linux/DEBIAN/control @@ -1,5 +1,5 @@ Package: paisa -Version: 0.5.3 +Version: 0.5.4 Section: misc Priority: optional Architecture: amd64 diff --git a/desktop/wails.json b/desktop/wails.json index c17cdc3a..a6f1c9aa 100644 --- a/desktop/wails.json +++ b/desktop/wails.json @@ -11,7 +11,7 @@ "Info": { "companyName": "Paisa", "productName": "Paisa", - "productVersion": "0.5.3", + "productVersion": "0.5.4", "copyright": "Copyright © 2022 - 2023 Anantha Kumaran", "comments": "Personal finance manager" }