diff --git a/.github/workflows/linux-app.yml b/.github/workflows/linux-app.yml index 72d62c77..bd8f071e 100644 --- a/.github/workflows/linux-app.yml +++ b/.github/workflows/linux-app.yml @@ -34,10 +34,10 @@ jobs: wails doctor wails build -tags webkit2_40 cp build/bin/Paisa build/linux/usr/local/bin - cp -r build/linux paisa_0.6.1_amd64 - dpkg --build paisa_0.6.1_amd64 + cp -r build/linux paisa_0.6.2_amd64 + dpkg --build paisa_0.6.2_amd64 cd .. - mv desktop/paisa_0.6.1_amd64.deb paisa-app-linux-amd64.deb + mv desktop/paisa_0.6.2_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 f3f5799c..32adb01a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +### 0.6.2 (2023-12-23) + +* New logo +* Allow goals to be reordered +* Show goals on the dashboard page +* Bug fixes + ### 0.6.1 (2023-12-16) * Add new price provider: [Alpha Vantage](https://paisa.fyi/reference/commodities/#alpha-vantage) diff --git a/cmd/version.go b/cmd/version.go index ea0e3588..4bf8339d 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.6.1") + fmt.Println("Version:", "0.6.2") }, } diff --git a/desktop/build/linux/DEBIAN/control b/desktop/build/linux/DEBIAN/control index ca182f5b..be261db1 100644 --- a/desktop/build/linux/DEBIAN/control +++ b/desktop/build/linux/DEBIAN/control @@ -1,5 +1,5 @@ Package: paisa -Version: 0.6.1 +Version: 0.6.2 Section: misc Priority: optional Architecture: amd64 diff --git a/desktop/main.go b/desktop/main.go index 3c062642..395f2c1c 100644 --- a/desktop/main.go +++ b/desktop/main.go @@ -61,7 +61,7 @@ func main() { Mac: &mac.Options{ About: &mac.AboutInfo{ Title: "Paisa", - Message: "Version 0.6.1 \nCopyright © 2022 - 2023 \nAnantha Kumaran", + Message: "Version 0.6.2 \nCopyright © 2022 - 2023 \nAnantha Kumaran", Icon: icon, }, }, diff --git a/desktop/wails.json b/desktop/wails.json index ef1f67db..f9058834 100644 --- a/desktop/wails.json +++ b/desktop/wails.json @@ -11,7 +11,7 @@ "Info": { "companyName": "Paisa", "productName": "Paisa", - "productVersion": "0.6.1", + "productVersion": "0.6.2", "copyright": "Copyright © 2022 - 2023 Anantha Kumaran", "comments": "Personal finance manager" } diff --git a/flake.nix b/flake.nix index 1f7d3058..2a84514c 100644 --- a/flake.nix +++ b/flake.nix @@ -12,7 +12,7 @@ packages.default = pkgs.buildGoModule { pname = "paisa-cli"; - version = "0.6.1"; + version = "0.6.2"; src = ./.; diff --git a/src/routes/(app)/more/about/+page.svelte b/src/routes/(app)/more/about/+page.svelte index 3b5c6217..da4f18e5 100644 --- a/src/routes/(app)/more/about/+page.svelte +++ b/src/routes/(app)/more/about/+page.svelte @@ -43,7 +43,7 @@