Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ananthakumaran committed Nov 4, 2023
1 parent 43b1093 commit c381c0e
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 9 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.5.5_amd64
dpkg --build paisa_0.5.5_amd64
cp -r build/linux paisa_0.5.6_amd64
dpkg --build paisa_0.5.6_amd64
cd ..
mv desktop/paisa_0.5.5_amd64.deb paisa-app-linux-amd64.deb
mv desktop/paisa_0.5.6_amd64.deb paisa-app-linux-amd64.deb
- name: Release
uses: softprops/action-gh-release@v1
with:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

### 0.5.6 (2023-11-04)

* Add support for Income:CapitalGains
* Add option to control display precision
* Add new price provider for gold and silver (IBJA India)
* Add option to disable budget rollover
* Bug fixes

### 0.5.5 (2023-10-07)

* Support account icon customization
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.5.5")
fmt.Println("Version:", "0.5.6")
},
}

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.5.5
Version: 0.5.6
Section: misc
Priority: optional
Architecture: amd64
Expand Down
2 changes: 1 addition & 1 deletion desktop/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func main() {
Mac: &mac.Options{
About: &mac.AboutInfo{
Title: "Paisa",
Message: "Version 0.5.5 \nCopyright © 2022 - 2023 \nAnantha Kumaran",
Message: "Version 0.5.6 \nCopyright © 2022 - 2023 \nAnantha Kumaran",
Icon: icon,
},
},
Expand Down
2 changes: 1 addition & 1 deletion desktop/wails.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"Info": {
"companyName": "Paisa",
"productName": "Paisa",
"productVersion": "0.5.5",
"productVersion": "0.5.6",
"copyright": "Copyright © 2022 - 2023 Anantha Kumaran",
"comments": "Personal finance manager"
}
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

packages.default = pkgs.buildGoModule {
pname = "paisa-cli";
version = "0.5.5";
version = "0.5.6";

src = ./.;

Expand Down
3 changes: 3 additions & 0 deletions internal/ledger/ledger_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ func TestParseLegerPrices(t *testing.T) {
assert.Len(t, parsedPrices, 0)
parsedPrices, _ = parseLedgerPrices("P 2023/05/01 00:00:00 USD $0.9\n", "INR")
assert.Len(t, parsedPrices, 0)

parsedPrices, _ = parseLedgerPrices("P 2022/01/29 00:50:00 UAH 0.026 EUR\n", "EUR")
assertPriceEqual(t, parsedPrices[0], "2022/01/29", "UAH", 0.026)
}

func TestParseHLegerPrices(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion src/routes/more/about/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<div><Logo size={64} /></div>
<div class="is-size-3">Paisa</div>
<div>
Version: <b>0.5.5</b>
Version: <b>0.5.6</b>
</div>
</div>

Expand Down

0 comments on commit c381c0e

Please sign in to comment.