Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ananthakumaran committed Feb 2, 2024
1 parent 798154b commit 64bee2c
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 23 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.4_amd64
dpkg --build paisa_0.6.4_amd64
cp -r build/linux paisa_0.6.5_amd64
dpkg --build paisa_0.6.5_amd64
cd ..
mv desktop/paisa_0.6.4_amd64.deb paisa-app-linux-amd64.deb
mv desktop/paisa_0.6.5_amd64.deb paisa-app-linux-amd64.deb
- name: Release
uses: softprops/action-gh-release@v1
with:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

### 0.6.5 (2024-02-02)

* Add Liabilities > [Credit Card](https://paisa.fyi/reference/credit-cards) page
* Support password protected XLSX file
* Allow user to configure timezone
* Bug fixes

### 0.6.4 (2024-01-22)

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.4")
fmt.Println("Version:", "0.6.5")
},
}

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.4
Version: 0.6.5
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.4 \nCopyright © 2022 - 2024 \nAnantha Kumaran",
Message: "Version 0.6.5 \nCopyright © 2022 - 2024 \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.4",
"productVersion": "0.6.5",
"copyright": "Copyright © 2022 - 2024 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 @@ -18,13 +18,13 @@

packages.default = pkgs.buildGoModule {
pname = "paisa-cli";
version = "0.6.4";
version = "0.6.5";

src = ./.;

nativeBuildInputs = [ pkgs.nodejs-18_x ];

vendorHash = "sha256-9VM6+0h6DMtlA+RvCfpDffAvaq7jRmBVVFTbdUfYwsA=";
vendorHash = "sha256-KnHJ6+aMahTeNdbRcRAgBERGVYen/tM/tDcFI/NyLdE=";

CGO_ENABLED = 1;

Expand Down
10 changes: 5 additions & 5 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/lib/components/Actions.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<span class="ml-0 icon is-small">
<i class="fas {$obscure ? 'fa-eye-slash' : 'fa-eye'}" />
</span>
<span>Hide numbers</span>
<span>{$obscure ? "Show" : "Hide"} numbers</span>
</label>
</a>
{#if showLogout}
Expand Down
14 changes: 7 additions & 7 deletions src/routes/(app)/liabilities/credit_cards/[slug]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,15 @@
<div class="column is-9-widescreen is-8">
{#if currentBill}
<div class="flex flex-wrap gap-4 mb-4">
<div class="box py-2 m-0 flex-grow" style="border: 1px solid transparent">
<div
class="is-flex mr-2 is-align-items-baseline overflow-x-scroll"
style="min-width: fit-content"
>
<div class="ml-3 custom-icon is-size-5">
<div
class="box py-2 m-0 flex-grow overflow-x-scroll"
style="border: 1px solid transparent"
>
<div class="is-flex mr-2 is-align-items-baseline" style="min-width: fit-content">
<div class="ml-3 custom-icon is-size-5 whitespace-nowrap">
<span>{iconify(creditCard.account)}</span>
</div>
<div class="ml-3">
<div class="ml-3 whitespace-nowrap">
<span class="mr-1 is-size-7 has-text-grey">Payment</span>
<span
><DueDate dueDate={currentBill.dueDate} paidDate={currentBill.paidDate} /></span
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.4</b>
Version: <b>0.6.5</b>
</div>
</div>

Expand Down

0 comments on commit 64bee2c

Please sign in to comment.