changelogs, bump version to 0.27.1

This commit is contained in:
Simon Michael 2016-05-27 10:50:34 -07:00
parent 0bf604839e
commit 015c2baf74
9 changed files with 48 additions and 29 deletions

View File

@ -1 +1 @@
0.27
0.27.1

View File

@ -1,6 +1,11 @@
API-ish changes in hledger-lib.
For user-visible changes, see hledger's change log.
0.27.1 (2016/05/27)
- GHC 8 compatibility
0.27 (2015/10/30)
- The main hledger types now derive NFData, which makes it easier to

View File

@ -3,7 +3,7 @@
-- see: https://github.com/sol/hpack
name: hledger-lib
version: 0.27
version: 0.27.1
stability: stable
category: Finance
synopsis: Core data types, parsers and functionality for the hledger accounting tools
@ -23,7 +23,7 @@ homepage: http://hledger.org
bug-reports: http://bugs.hledger.org
cabal-version: >= 1.10
build-type: Simple
tested-with: GHC==7.4.2, GHC==7.6.3, GHC==7.8.4, GHC==7.10.2
tested-with: GHC==7.6.3, GHC==7.8.4, GHC==7.10.3, GHC==8.0.1
extra-source-files:
CHANGES

View File

@ -1,6 +1,10 @@
User-visible changes in hledger-ui.
See also hledger's change log.
0.27.5 (2016/05/27)
- GHC 8 compatibility
0.27.4 (2016/5/19)
- ensure we have the Show instance for functions, needed since regex-tdfa 1.2.2

View File

@ -3,7 +3,7 @@
-- see: https://github.com/sol/hpack
name: hledger-ui
version: 0.27.4
version: 0.27.5
stability: beta
category: Finance, Console
synopsis: Curses-style user interface for the hledger accounting tool
@ -25,7 +25,7 @@ homepage: http://hledger.org
bug-reports: http://bugs.hledger.org
cabal-version: >= 1.10
build-type: Simple
tested-with: GHC==7.8.4, GHC==7.10.3
tested-with: GHC==7.8.4, GHC==7.10.3, GHC==8.0.1
extra-source-files:
CHANGES
@ -54,10 +54,10 @@ executable hledger-ui
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans
if flag(threaded)
ghc-options: -threaded
cpp-options: -DVERSION="0.27.4"
cpp-options: -DVERSION="0.27.5"
build-depends:
hledger >= 0.27 && < 0.28
, hledger-lib >= 0.27 && < 0.28
hledger >= 0.27.1 && < 0.28
, hledger-lib >= 0.27.1 && < 0.28
, base >= 3 && < 5
, base-compat >= 0.8.1
, brick >= 0.2 && < 0.7

View File

@ -1,6 +1,11 @@
User-visible changes in hledger-web.
See also hledger's change log.
0.27.1 (2016/05/27)
- GHC 8 compatibility
0.27 (2015/10/30)
- Fix keyboard shortcut for adding a transaction (Carlos Lopez-Camey)

View File

@ -3,7 +3,7 @@
-- see: https://github.com/sol/hpack
name: hledger-web
version: 0.27
version: 0.27.1
stability: stable
category: Finance
synopsis: Web interface for the hledger accounting tool
@ -25,7 +25,7 @@ homepage: http://hledger.org
bug-reports: http://bugs.hledger.org
cabal-version: >= 1.10
build-type: Simple
tested-with: GHC==7.6.3, GHC==7.8.4, GHC==7.10.2
tested-with: GHC==7.6.3, GHC==7.8.4, GHC==7.10.3, GHC==8.0.1
extra-source-files:
CHANGES
@ -125,12 +125,12 @@ flag old-locale
library
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans
cpp-options: -DVERSION="0.27"
cpp-options: -DVERSION="0.27.1"
if flag(dev) || flag(library-only)
cpp-options: -DDEVELOPMENT
build-depends:
hledger-lib == 0.27
, hledger == 0.27
hledger-lib == 0.27.1
, hledger == 0.27.1
, base >= 4 && < 5
, base-compat >= 0.8.1
, blaze-html
@ -198,12 +198,12 @@ executable hledger-web
ghc-options: -threaded
if flag(dev)
ghc-options: -O0
cpp-options: -DVERSION="0.27"
cpp-options: -DVERSION="0.27.1"
if flag(dev)
cpp-options: -DDEVELOPMENT
build-depends:
hledger-lib == 0.27
, hledger == 0.27
hledger-lib == 0.27.1
, hledger == 0.27.1
, base >= 4 && < 5
, base-compat >= 0.8.1
, blaze-html
@ -235,7 +235,7 @@ executable hledger-web
, yesod-form
, yesod-static
, json
, hledger-web == 0.27
, hledger-web == 0.27.1
if flag(old-locale)
build-depends: time < 1.5, old-locale
@ -253,10 +253,10 @@ test-suite test
hs-source-dirs:
tests
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans
cpp-options: -DVERSION="0.27"
cpp-options: -DVERSION="0.27.1"
build-depends:
hledger-lib == 0.27
, hledger == 0.27
hledger-lib == 0.27.1
, hledger == 0.27.1
, base >= 4 && < 5
, base-compat >= 0.8.1
, blaze-html

View File

@ -1,6 +1,11 @@
User-visible changes in hledger and hledger-lib.
0.27.1 (2016/05/27)
- GHC 8 compatibility
0.27 (2015/10/30)
Account aliases:

View File

@ -3,7 +3,7 @@
-- see: https://github.com/sol/hpack
name: hledger
version: 0.27
version: 0.27.1
stability: stable
category: Finance, Console
synopsis: Command-line interface for the hledger accounting tool
@ -25,7 +25,7 @@ homepage: http://hledger.org
bug-reports: http://bugs.hledger.org
cabal-version: >= 1.10
build-type: Simple
tested-with: GHC==7.4.2, GHC==7.6.3, GHC==7.8.4, GHC==7.10.2
tested-with: GHC==7.6.3, GHC==7.8.4, GHC==7.10.3, GHC==8.0.1
extra-source-files:
CHANGES
@ -55,9 +55,9 @@ flag old-locale
library
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans
cpp-options: -DVERSION="0.27"
cpp-options: -DVERSION="0.27.1"
build-depends:
hledger-lib == 0.27
hledger-lib == 0.27.1
, base >= 4.3 && < 5
, base-compat >= 0.8.1
, containers
@ -129,9 +129,9 @@ executable hledger
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans
if flag(threaded)
ghc-options: -threaded
cpp-options: -DVERSION="0.27"
cpp-options: -DVERSION="0.27.1"
build-depends:
hledger-lib == 0.27
hledger-lib == 0.27.1
, base >= 4.3 && < 5
, base-compat >= 0.8.1
, containers
@ -154,7 +154,7 @@ executable hledger
, tabular >= 0.2 && < 0.3
, utf8-string >= 0.3.5 && < 1.1
, wizards == 1.0.*
, hledger == 0.27
, hledger == 0.27.1
if impl(ghc >= 7.10)
build-depends: shakespeare >= 2.0.2.2 && < 2.1
@ -182,9 +182,9 @@ test-suite test
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
cpp-options: -DVERSION="0.27"
cpp-options: -DVERSION="0.27.1"
build-depends:
hledger-lib == 0.27
hledger-lib == 0.27.1
, base >= 4.3 && < 5
, base-compat >= 0.8.1
, containers