Skip to content

Commit

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

### 0.6.1 (2023-12-16)

* Add new price provider: [Alpha Vantage](https://paisa.fyi/reference/commodities/#alpha-vantage)
* Make first day of the week configurable
* Support ledger strict mode
* Add user login support, go to `User Accounts` section in configuration page to enable it
* Show notes associated with a transaction/posting
* Bug fixes

### 0.6.0 (2023-12-09)

* Add individual account balance on goals page
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.0")
fmt.Println("Version:", "0.6.1")
},
}

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.0
Version: 0.6.1
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 @@ -61,7 +61,7 @@ func main() {
Mac: &mac.Options{
About: &mac.AboutInfo{
Title: "Paisa",
Message: "Version 0.6.0 \nCopyright © 2022 - 2023 \nAnantha Kumaran",
Message: "Version 0.6.1 \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.6.0",
"productVersion": "0.6.1",
"copyright": "Copyright © 2022 - 2023 Anantha Kumaran",
"comments": "Personal finance manager"
}
Expand Down
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@

packages.default = pkgs.buildGoModule {
pname = "paisa-cli";
version = "0.6.0";
version = "0.6.1";

src = ./.;

nativeBuildInputs = [ pkgs.nodejs-18_x ];

vendorSha256 = "sha256-7JK2HwEhnWhLwT3KFcFVurdi9lp3UkyNBP5ESDkBfxE=";
vendorSha256 = "sha256-ctxN9tiu/qbcoOULVQ+ZigMX0+DEiixpIqVTDGcaRko=";

CGO_ENABLED = 1;

Expand Down
20 changes: 20 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 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={64} /></div>
<div class="is-size-3">Paisa</div>
<div>
Version: <b>0.6.0</b>
Version: <b>0.6.1</b>
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/routes/login/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<div class="flex justify-center items-center h-screen">
<div class="box px-5 w-80">
<div class="flex justify-center items-center mb-2">
<div class="mt-0.5"><Logo size={20} /></div>
<div class="mt-1"><Logo size={20} /></div>
<div class="is-size-4">Paisa</div>
</div>
<form on:submit|preventDefault={tryLogin}>
Expand Down

0 comments on commit cead06c

Please sign in to comment.