bump version

This commit is contained in:
Anantha Kumaran 2024-02-10 08:21:21 +05:30
parent 704f25914b
commit e33868be36
9 changed files with 17 additions and 10 deletions

View File

@ -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.5_amd64
dpkg --build paisa_0.6.5_amd64
cp -r build/linux paisa_0.6.6_amd64
dpkg --build paisa_0.6.6_amd64
cd ..
mv desktop/paisa_0.6.5_amd64.deb paisa-app-linux-amd64.deb
mv desktop/paisa_0.6.6_amd64.deb paisa-app-linux-amd64.deb
- name: Release
uses: softprops/action-gh-release@v1
with:

View File

@ -1,5 +1,12 @@
# CHANGELOG
### 0.6.6 (2024-02-10)
* Improve tables (make it sortable)
* Show tabulated value on allocation page
* Show invested value on goals page
* Bug fixes
### 0.6.5 (2024-02-02)
* Add Liabilities > [Credit Card](https://paisa.fyi/reference/credit-cards) page

View File

@ -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.5")
fmt.Println("Version:", "0.6.6")
},
}

View File

@ -1,5 +1,5 @@
Package: paisa
Version: 0.6.5
Version: 0.6.6
Section: misc
Priority: optional
Architecture: amd64

View File

@ -61,7 +61,7 @@ func main() {
Mac: &mac.Options{
About: &mac.AboutInfo{
Title: "Paisa",
Message: "Version 0.6.5 \nCopyright © 2022 - 2024 \nAnantha Kumaran",
Message: "Version 0.6.6 \nCopyright © 2022 - 2024 \nAnantha Kumaran",
Icon: icon,
},
},

View File

@ -11,7 +11,7 @@
"Info": {
"companyName": "Paisa",
"productName": "Paisa",
"productVersion": "0.6.5",
"productVersion": "0.6.6",
"copyright": "Copyright © 2022 - 2024 Anantha Kumaran",
"comments": "Personal finance manager"
}

View File

@ -18,7 +18,7 @@
packages.default = pkgs.buildGoModule {
pname = "paisa-cli";
version = "0.6.5";
version = "0.6.6";
src = ./.;

View File

@ -43,7 +43,7 @@
<div><Logo size={128} /></div>
<div class="is-size-3 is-primary-color">Paisa</div>
<div>
Version: <b>0.6.5</b>
Version: <b>0.6.6</b>
</div>
</div>

View File

@ -156,7 +156,7 @@
</div>
<BoxLabel text="Monthly Investment" />
<div class="columns">
<div class="column is-12 has-text-centered has-text-grey">
<div class="column is-12 has-text-grey">
<AssetsBalance breakdowns={balances} indent={false} />
</div>
</div>