Skip to content

Commit 3d0fb9f

Browse files
committed
Update changelog, prepare next release
1 parent ad83e63 commit 3d0fb9f

File tree

4 files changed

+44
-3
lines changed

4 files changed

+44
-3
lines changed

Diff for: changelog.md

+41
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,44 @@
1+
# Changelog
2+
3+
This changelog only contains user facing changes of the app itself.
4+
5+
6+
## 0.8.0 (2020-09-09)
7+
8+
- Add CLI command to show version number ([5f9cc03])
9+
- Add csv2yaml scripts for MBS and PayPal ([d1b4840])
10+
- Add subcommand "unused-files" to list unreferenced files ([c107a9a])
11+
- Minor fixes and improvements for csv2yaml and transactions scripts ([202c3d4])
12+
- Minor improvements for retrieval scripts ([a1c6410])
13+
- Warn about non existent referenced files ([a6fbf8b])
14+
15+
[5f9cc03]: https://github.com/feramhq/transity/commit/5f9cc03
16+
[d1b4840]: https://github.com/feramhq/transity/commit/d1b4840
17+
[c107a9a]: https://github.com/feramhq/transity/commit/c107a9a
18+
[202c3d4]: https://github.com/feramhq/transity/commit/202c3d4
19+
[a1c6410]: https://github.com/feramhq/transity/commit/a1c6410
20+
[a6fbf8b]: https://github.com/feramhq/transity/commit/a6fbf8b
21+
22+
23+
## 0.7.0 (2020-02-18)
24+
25+
- Improve normalization of crawled transactions ([ac78c05])
26+
- Improve scripts for transactions loading & parsing ([c7c558e])
27+
- Switch to AGPL and improve wording of license documentation ([8dde588])
28+
29+
[ac78c05]: https://github.com/feramhq/transity/commit/ac78c05
30+
[c7c558e]: https://github.com/feramhq/transity/commit/c7c558e
31+
[8dde588]: https://github.com/feramhq/transity/commit/8dde588
32+
33+
34+
## 0.6.0 (2019-10-20)
35+
36+
- Add comparison between Transity and Hledger entries ([acf219b])
37+
- Add screenshots ([acf219b])
38+
39+
[acf219b]: https://github.com/feramhq/transity/commit/acf219b
40+
41+
142
# 0.5.0 (2019-05-04)
243

344
- Deploy simple web version of Transity at [feram.io/transity] <!----> (5cc24f6)

Diff for: package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "transity",
33
"description": "Keep track of your 💵, 🕘, 🐖, 🐄, 🍻 or anything else.",
4-
"version": "0.7.0",
4+
"version": "0.8.0",
55
"main": "output/Main/index.js",
66
"browser": "webapp/main.js",
77
"bin": {

Diff for: src/Main.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ main = do
182182

183183
case [arguments !! 2, arguments !! 3, arguments !! 4] of
184184
[Just "help", Nothing, Nothing] -> log usageString
185-
[Just "version", Nothing, Nothing] -> log "0.7.0"
185+
[Just "version", Nothing, Nothing] -> log "0.8.0"
186186

187187
[Just _, Nothing, Nothing] ->
188188
errorAndExit $ "No path to a ledger file was provided\n\n" <> usageString

0 commit comments

Comments
 (0)