File tree 5 files changed +9
-4
lines changed
5 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog for [ hledger-flow] ( https://github.com/apauley/hledger-flow )
2
2
3
+ ## 0.12.4.0
4
+
5
+ - Update usage of hledger to reflect updated command-line flags of hledger version 1.15
6
+ https://github.com/apauley/hledger-flow/issues/73
7
+ - Compile with stackage lts-14.9
8
+
3
9
## 0.12.3.1
4
10
5
11
Fixed a bug where:
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ import Turtle hiding (switch)
6
6
import Prelude hiding (FilePath , putStrLn )
7
7
8
8
import Options.Applicative
9
- import Data.Semigroup ((<>) )
10
9
11
10
import Hledger.Flow.Common
12
11
import qualified Hledger.Flow.RuntimeOptions as RT
Original file line number Diff line number Diff line change 1
1
name : hledger-flow
2
- version : 0.12.3.2
2
+ version : 0.12.4.0
3
3
synopsis : An hledger workflow focusing on automated statement import and classification.
4
4
category : Finance, Console
5
5
license : GPL-3
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ unknownTransactions opts ch journal reportsDir year = do
73
73
74
74
incomeStatement :: [Text ] -> ReportGenerator
75
75
incomeStatement sharedOptions opts ch journal reportsDir year = do
76
- let reportArgs = [" incomestatement" ] ++ sharedOptions ++ [" --cost" , " --value " ]
76
+ let reportArgs = [" incomestatement" ] ++ sharedOptions ++ [" --cost" ]
77
77
generateReport opts ch journal reportsDir year (" income-expenses" <.> " txt" ) reportArgs (not . T. null )
78
78
79
79
balanceSheet :: [Text ] -> ReportGenerator
Original file line number Diff line number Diff line change 18
18
#
19
19
# resolver: ./custom-snapshot.yaml
20
20
# resolver: https://example.com/snapshots/2018-01-01.yaml
21
- resolver : nightly-2019-08-04
21
+ resolver : lts-14.9
22
22
23
23
# User packages to be built.
24
24
# Various formats can be used as shown in the example below.
You can’t perform that action at this time.
0 commit comments