lib, cli, web: bump version to 1.16.1
This commit is contained in:
parent
6ae837f820
commit
093dca570d
@ -1 +1 @@
|
||||
1.16
|
||||
1.16.1
|
||||
@ -1,7 +1,7 @@
|
||||
m4_dnl m4 macro definitions used in this package's docs.
|
||||
m4_dnl
|
||||
m4_dnl Program version. Updated by make setversion.
|
||||
m4_define({{_version_}}, {{1.16}})m4_dnl
|
||||
m4_define({{_version_}}, {{1.16.1}})m4_dnl
|
||||
m4_dnl
|
||||
m4_dnl Date to show in man pages. Updated by make setdate.
|
||||
m4_define({{_monthyear_}}, {{December 2019}})m4_dnl
|
||||
|
||||
@ -4,10 +4,10 @@ cabal-version: 1.12
|
||||
--
|
||||
-- see: https://github.com/sol/hpack
|
||||
--
|
||||
-- hash: 074161d9d859631d65696647ed5f6df51c89d5c35f96dfc62ebf4fa295cc1809
|
||||
-- hash: f67238ad457aa23ba68686a932bc3f37f30d6f3f9f4514468e35e960ab81fe1b
|
||||
|
||||
name: hledger-lib
|
||||
version: 1.16
|
||||
version: 1.16.1
|
||||
synopsis: Core data types, parsers and functionality for the hledger accounting tools
|
||||
description: This is a reusable library containing hledger's core functionality.
|
||||
.
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
name: hledger-lib
|
||||
version: 1.16
|
||||
version: 1.16.1
|
||||
synopsis: Core data types, parsers and functionality for the hledger accounting tools
|
||||
description: |
|
||||
This is a reusable library containing hledger's core functionality.
|
||||
|
||||
@ -1 +1 @@
|
||||
1.16
|
||||
1.16.1
|
||||
@ -1,7 +1,7 @@
|
||||
m4_dnl m4 macro definitions used in this package's docs.
|
||||
m4_dnl
|
||||
m4_dnl Program version. Updated by make setversion.
|
||||
m4_define({{_version_}}, {{1.16}})m4_dnl
|
||||
m4_define({{_version_}}, {{1.16.1}})m4_dnl
|
||||
m4_dnl
|
||||
m4_dnl Date to show in man pages. Updated by make setdate.
|
||||
m4_define({{_monthyear_}}, {{December 2019}})m4_dnl
|
||||
|
||||
@ -4,10 +4,10 @@ cabal-version: 1.12
|
||||
--
|
||||
-- see: https://github.com/sol/hpack
|
||||
--
|
||||
-- hash: c5289bad9f5862e797248b10b6b30083a281d125eeec3964a43284e56d197f08
|
||||
-- hash: e75b2c52f9b849b13eff2f1b6d6c15c8c0d6ffcaa24883475a63d8743c2cbfa9
|
||||
|
||||
name: hledger-web
|
||||
version: 1.16
|
||||
version: 1.16.1
|
||||
synopsis: Web interface for the hledger accounting tool
|
||||
description: This is hledger's web interface.
|
||||
It provides a more user-friendly and collaborative UI than the
|
||||
@ -151,7 +151,7 @@ library
|
||||
hs-source-dirs:
|
||||
./.
|
||||
ghc-options: -Wall -fwarn-tabs -Wcompat -Wincomplete-uni-patterns -Wincomplete-record-updates -Wredundant-constraints
|
||||
cpp-options: -DVERSION="1.16"
|
||||
cpp-options: -DVERSION="1.16.1"
|
||||
build-depends:
|
||||
Decimal
|
||||
, aeson
|
||||
@ -169,8 +169,8 @@ library
|
||||
, directory
|
||||
, filepath
|
||||
, hjsmin
|
||||
, hledger >=1.16 && <1.17
|
||||
, hledger-lib >=1.16 && <1.17
|
||||
, hledger >=1.16.1 && <1.17
|
||||
, hledger-lib >=1.16.1 && <1.17
|
||||
, http-client
|
||||
, http-conduit
|
||||
, http-types
|
||||
@ -206,7 +206,7 @@ executable hledger-web
|
||||
hs-source-dirs:
|
||||
app
|
||||
ghc-options: -Wall -fwarn-tabs -Wcompat -Wincomplete-uni-patterns -Wincomplete-record-updates -Wredundant-constraints
|
||||
cpp-options: -DVERSION="1.16"
|
||||
cpp-options: -DVERSION="1.16.1"
|
||||
build-depends:
|
||||
base
|
||||
, hledger-web
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
name: hledger-web
|
||||
version: 1.16
|
||||
version: 1.16.1
|
||||
synopsis: Web interface for the hledger accounting tool
|
||||
description: |
|
||||
This is hledger's web interface.
|
||||
@ -77,7 +77,7 @@ when:
|
||||
|
||||
library:
|
||||
source-dirs: .
|
||||
cpp-options: -DVERSION="1.16"
|
||||
cpp-options: -DVERSION="1.16.1"
|
||||
exposed-modules:
|
||||
- Hledger.Web
|
||||
- Hledger.Web.Application
|
||||
@ -97,8 +97,8 @@ library:
|
||||
- Hledger.Web.Widget.AddForm
|
||||
- Hledger.Web.Widget.Common
|
||||
dependencies:
|
||||
- hledger-lib >=1.16 && <1.17
|
||||
- hledger >=1.16 && <1.17
|
||||
- hledger-lib >=1.16.1 && <1.17
|
||||
- hledger >=1.16.1 && <1.17
|
||||
- aeson
|
||||
- base >=4.9 && <4.14
|
||||
- blaze-html
|
||||
@ -142,7 +142,7 @@ executables:
|
||||
hledger-web:
|
||||
source-dirs: app
|
||||
main: main.hs
|
||||
cpp-options: -DVERSION="1.16"
|
||||
cpp-options: -DVERSION="1.16.1"
|
||||
dependencies:
|
||||
- base
|
||||
- hledger-web
|
||||
@ -158,7 +158,7 @@ executables:
|
||||
# source-dirs: test
|
||||
# main: test.hs
|
||||
# other-modules: [] # prevent double compilation, https://github.com/sol/hpack/issues/188
|
||||
# cpp-options: -DVERSION="1.16"
|
||||
# cpp-options: -DVERSION="1.16.1"
|
||||
# dependencies:
|
||||
# - base
|
||||
# - hledger-web
|
||||
|
||||
@ -1 +1 @@
|
||||
1.16
|
||||
1.16.1
|
||||
@ -1,7 +1,7 @@
|
||||
m4_dnl m4 macro definitions used in this package's docs.
|
||||
m4_dnl
|
||||
m4_dnl Program version. Updated by make setversion.
|
||||
m4_define({{_version_}}, {{1.16}})m4_dnl
|
||||
m4_define({{_version_}}, {{1.16.1}})m4_dnl
|
||||
m4_dnl
|
||||
m4_dnl Date to show in man pages. Updated by make setdate.
|
||||
m4_define({{_monthyear_}}, {{December 2019}})m4_dnl
|
||||
|
||||
@ -4,10 +4,10 @@ cabal-version: 1.12
|
||||
--
|
||||
-- see: https://github.com/sol/hpack
|
||||
--
|
||||
-- hash: f66a371d64e36317dc27b2658c0b367d60424772c46b6ad0efc2845b61c4cb75
|
||||
-- hash: 029bcf223345b932dacaaf3200f66a8d7529e1fad4bfe8343228720893aa27bb
|
||||
|
||||
name: hledger
|
||||
version: 1.16
|
||||
version: 1.16.1
|
||||
synopsis: Command-line interface for the hledger accounting tool
|
||||
description: This is hledger's command-line interface.
|
||||
Its basic function is to read a plain text file describing
|
||||
@ -144,7 +144,7 @@ library
|
||||
other-modules:
|
||||
Paths_hledger
|
||||
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans -optP-Wno-nonportable-include-path
|
||||
cpp-options: -DVERSION="1.16"
|
||||
cpp-options: -DVERSION="1.16.1"
|
||||
build-depends:
|
||||
Decimal
|
||||
, Diff
|
||||
@ -160,7 +160,7 @@ library
|
||||
, filepath
|
||||
, hashable >=1.2.4
|
||||
, haskeline >=0.6
|
||||
, hledger-lib >=1.16 && <1.17
|
||||
, hledger-lib >=1.16.1 && <1.17
|
||||
, lucid
|
||||
, math-functions >=0.2.0.0
|
||||
, megaparsec >=7.0.0 && <8
|
||||
@ -196,7 +196,7 @@ executable hledger
|
||||
hs-source-dirs:
|
||||
app
|
||||
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans -optP-Wno-nonportable-include-path
|
||||
cpp-options: -DVERSION="1.16"
|
||||
cpp-options: -DVERSION="1.16.1"
|
||||
build-depends:
|
||||
Decimal
|
||||
, ansi-terminal >=0.6.2.3
|
||||
@ -211,7 +211,7 @@ executable hledger
|
||||
, filepath
|
||||
, haskeline >=0.6
|
||||
, hledger
|
||||
, hledger-lib >=1.16 && <1.17
|
||||
, hledger-lib >=1.16.1 && <1.17
|
||||
, math-functions >=0.2.0.0
|
||||
, megaparsec >=7.0.0 && <8
|
||||
, mtl >=2.2.1
|
||||
@ -247,7 +247,7 @@ test-suite unittest
|
||||
hs-source-dirs:
|
||||
test
|
||||
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans -optP-Wno-nonportable-include-path
|
||||
cpp-options: -DVERSION="1.16"
|
||||
cpp-options: -DVERSION="1.16.1"
|
||||
build-depends:
|
||||
Decimal
|
||||
, ansi-terminal >=0.6.2.3
|
||||
@ -262,7 +262,7 @@ test-suite unittest
|
||||
, filepath
|
||||
, haskeline >=0.6
|
||||
, hledger
|
||||
, hledger-lib >=1.16 && <1.17
|
||||
, hledger-lib >=1.16.1 && <1.17
|
||||
, math-functions >=0.2.0.0
|
||||
, megaparsec >=7.0.0 && <8
|
||||
, mtl >=2.2.1
|
||||
@ -311,7 +311,7 @@ benchmark bench
|
||||
, filepath
|
||||
, haskeline >=0.6
|
||||
, hledger
|
||||
, hledger-lib >=1.16 && <1.17
|
||||
, hledger-lib >=1.16.1 && <1.17
|
||||
, html
|
||||
, math-functions >=0.2.0.0
|
||||
, megaparsec >=7.0.0 && <8
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
name: hledger
|
||||
version: 1.16
|
||||
version: 1.16.1
|
||||
synopsis: Command-line interface for the hledger accounting tool
|
||||
description: |
|
||||
This is hledger's command-line interface.
|
||||
@ -105,7 +105,7 @@ ghc-options:
|
||||
- -optP-Wno-nonportable-include-path
|
||||
|
||||
dependencies:
|
||||
- hledger-lib >=1.16 && <1.17
|
||||
- hledger-lib >=1.16.1 && <1.17
|
||||
- ansi-terminal >=0.6.2.3
|
||||
- base >=4.9 && <4.14
|
||||
- base-compat-batteries >=0.10.1 && <0.12
|
||||
@ -147,7 +147,7 @@ when:
|
||||
- terminfo
|
||||
|
||||
library:
|
||||
cpp-options: -DVERSION="1.16"
|
||||
cpp-options: -DVERSION="1.16.1"
|
||||
exposed-modules:
|
||||
- Hledger.Cli
|
||||
- Hledger.Cli.Main
|
||||
@ -195,7 +195,7 @@ executables:
|
||||
hledger:
|
||||
source-dirs: app
|
||||
main: hledger-cli.hs
|
||||
cpp-options: -DVERSION="1.16"
|
||||
cpp-options: -DVERSION="1.16.1"
|
||||
when:
|
||||
- condition: flag(threaded)
|
||||
ghc-options: -threaded
|
||||
@ -207,7 +207,7 @@ tests:
|
||||
source-dirs: test
|
||||
main: unittest.hs
|
||||
other-modules: [] # prevent double compilation, https://github.com/sol/hpack/issues/188
|
||||
cpp-options: -DVERSION="1.16"
|
||||
cpp-options: -DVERSION="1.16.1"
|
||||
dependencies:
|
||||
- hledger
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user