Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ananthakumaran committed Sep 22, 2023
1 parent f60842e commit 7657047
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
paisa.db
paisa.yaml
./paisa
/paisa
web/static
example.ledger
main.ledger
Expand Down
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# CHANGELOG

### 0.5.1 (2023-09-22)

* Add Desktop app
* Bug fixes

## Breaking Changes :rotating_light:

* The structure of price code configuration has been updated to make
it easier to add more price provider in the future. In addition to
the code, the provider name also has to be added. Refer the
[config](https://paisa.fyi/reference/config/) documentation for more details

```diff
type: mutualfund
- code: 122639
+ price:
+ provider: in-mfapi
+ code: 122639
harvest: 365
```


### 0.5.0 (2023-09-16)

* Add config 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.0")
fmt.Println("Version:", "0.5.1")
},
}

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.0",
"productVersion": "0.5.1",
"copyright": "Copyright © 2022 - 2023 Anantha Kumaran",
"comments": "Personal finance manager"
}
Expand Down

0 comments on commit 7657047

Please sign in to comment.