Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ananthakumaran committed Jan 13, 2024
1 parent ec7532d commit b2fed86
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linux-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.2_amd64
dpkg --build paisa_0.6.2_amd64
cp -r build/linux paisa_0.6.3_amd64
dpkg --build paisa_0.6.3_amd64
cd ..
mv desktop/paisa_0.6.2_amd64.deb paisa-app-linux-amd64.deb
mv desktop/paisa_0.6.3_amd64.deb paisa-app-linux-amd64.deb
- name: Release
uses: softprops/action-gh-release@v1
with:
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# CHANGELOG


### 0.6.3 (2024-01-13)

* Introduce [Sheets](https://paisa.fyi/reference/sheets/): A notepad calculator with access to your ledger
* Remove flat option from cashflow > yearly page
* Dockerimage now installs paisa to /usr/bin
* Improve legends rendering on all pages
* Allow user to cancel pdf password prompt
* Add new warning for missing assets accounts from allocation target
* Support hledger's balance assertion
* Bug fixes

### 0.6.2 (2023-12-23)

* New logo
Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.2")
fmt.Println("Version:", "0.6.3")
},
}

Expand Down
2 changes: 1 addition & 1 deletion desktop/build/linux/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: paisa
Version: 0.6.2
Version: 0.6.3
Section: misc
Priority: optional
Architecture: amd64
Expand Down
2 changes: 1 addition & 1 deletion desktop/build/linux/DEBIAN/copyright
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Upstream-Name: Paisa
Upstream-Contact: Anantha Kumaran <[email protected]>
Source: https://github.com/ananthakumaran/paisa
Files: *
Copyright: Copyright 2022 - 2023 Anantha Kumaran <[email protected]>
Copyright: Copyright 2022 - 2024 Anantha Kumaran <[email protected]>
License: AGPL-3.0-or-later
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion desktop/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func main() {
Mac: &mac.Options{
About: &mac.AboutInfo{
Title: "Paisa",
Message: "Version 0.6.2 \nCopyright © 2022 - 2023 \nAnantha Kumaran",
Message: "Version 0.6.3 \nCopyright © 2022 - 2024 \nAnantha Kumaran",
Icon: icon,
},
},
Expand Down
4 changes: 2 additions & 2 deletions desktop/wails.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"Info": {
"companyName": "Paisa",
"productName": "Paisa",
"productVersion": "0.6.2",
"copyright": "Copyright © 2022 - 2023 Anantha Kumaran",
"productVersion": "0.6.3",
"copyright": "Copyright © 2022 - 2024 Anantha Kumaran",
"comments": "Personal finance manager"
}
}
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

packages.default = pkgs.buildGoModule {
pname = "paisa-cli";
version = "0.6.2";
version = "0.6.3";

src = ./.;

Expand Down
10 changes: 10 additions & 0 deletions flake/node-package.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ extra_css:
- stylesheets/extra.css

copyright: |
Copyright © 2022 - 2023 Anantha Kumaran <br \> <a href="#__consent">Change cookie settings</a>
Copyright © 2022 - 2024 Anantha Kumaran <br \> <a href="#__consent">Change cookie settings</a>
extra:
social:
- icon: fontawesome/brands/github
Expand Down
2 changes: 1 addition & 1 deletion src/routes/(app)/more/about/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<div><Logo size={128} /></div>
<div class="is-size-3 is-primary-color">Paisa</div>
<div>
Version: <b>0.6.2</b>
Version: <b>0.6.3</b>
</div>
</div>

Expand Down

0 comments on commit b2fed86

Please sign in to comment.