Skip to content

Commit

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

### 0.5.5 (2023-10-07)

* Support account icon customization
* Add beancount ledger client support

### 0.5.4 (2023-10-07)

* Add calendar view to recurring 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.5.4")
fmt.Println("Version:", "0.5.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.5.4
Version: 0.5.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 @@ -46,7 +46,7 @@ func main() {
Mac: &mac.Options{
About: &mac.AboutInfo{
Title: "Paisa",
Message: "Version 0.5.4 \nCopyright © 2022 - 2023 \nAnantha Kumaran",
Message: "Version 0.5.5 \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.4",
"productVersion": "0.5.5",
"copyright": "Copyright © 2022 - 2023 Anantha Kumaran",
"comments": "Personal finance manager"
}
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,5 +196,5 @@ after you make any changes to your journal file or you want to fetch
the latest value of the commodities. The update can be performed from
the UI as well via the dropdown in the top right hand side corner.

[^1]: [hledger](https://hledger.org) and [beancount](https://beancount.github.io/) is also supported, refer to the [configuration](../reference/config.md)
to see how to modify the `ledger_cli`.
[^1]: [hledger](https://hledger.org) and [beancount](https://beancount.github.io/) are also supported, refer
[Ledger CLI](../reference/ledger-cli.md) for more information.
5 changes: 4 additions & 1 deletion docs/reference/ledger-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
Paisa is compatible with [ledger](https://www.ledger-cli.org), [hledger](https://hledger.org/) and
[beancount](https://beancount.github.io/). By default paisa will try to use **ledger**, if you
prefer to use **hledger** or **beancount** instead, change the
`ledger_cli` value in paisa.yaml
`ledger_cli` value in [paisa.yaml](./config.md)

```yaml
# OPTIONAL, DEFAULT: ledger, ENUM: ledger, hledger, beancount
ledger_cli: hledger
```
Paisa ships with ledger binary. If you use hledger or beancount, make
sure that the binaries are installed.
1 change: 0 additions & 1 deletion internal/ledger/ledger.go
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,6 @@ func (Beancount) ValidateFile(journalPath string) ([]LedgerFileError, string, er

lines := strings.Split(utils.Dos2Unix(error.String()), "\n")
for _, line := range lines {
log.Info(line)
match := re.FindStringSubmatch(line)
if len(match) == 0 {
lastError := errors[len(errors)-1]
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.4</b>
Version: <b>0.5.5</b>
</div>
</div>

Expand Down

0 comments on commit 50b2cb8

Please sign in to comment.