bump version to 0.27

This commit is contained in:
Simon Michael 2015-10-30 13:18:55 -07:00
parent 36d97a2e50
commit a5fd56223c
11 changed files with 53 additions and 53 deletions

View File

@ -1 +1 @@
0.26.98 0.27

View File

@ -284,11 +284,11 @@ The resulting executables will be somewhere under .stack-work, eg in
```shell ```shell
$ make build $ make build
stack build stack build
hledger-lib-0.26.98: configure hledger-lib-0.27: configure
hledger-lib-0.26.98: build hledger-lib-0.27: build
hledger-lib-0.26.98: install hledger-lib-0.27: install
hledger-0.26.98: configure hledger-0.27: configure
hledger-0.26.98: build hledger-0.27: build
Progress: 1/4 Progress: 1/4
... ...
``` ```
@ -307,7 +307,7 @@ You should make sure this directory is in your `$PATH`, so that you can just typ
$ make install $ make install
stack install stack install
NOTE: the install command is functionally equivalent to 'build --copy-bins' NOTE: the install command is functionally equivalent to 'build --copy-bins'
hledger-0.26.98: build hledger-0.27: build
... ...
Copied executables to /Users/simon/.local/bin/: Copied executables to /Users/simon/.local/bin/:
- hledger-web - hledger-web
@ -341,16 +341,16 @@ which by default shows quick elapsed-time measurements for several operations on
$ stack bench hledger $ stack bench hledger
NOTE: the bench command is functionally equivalent to 'build --bench' NOTE: the bench command is functionally equivalent to 'build --bench'
... ...
hledger-0.26.98: benchmarks hledger-0.27: benchmarks
Running 1 benchmarks... Running 1 benchmarks...
Benchmark bench: RUNNING... Benchmark bench: RUNNING...
Benchmarking hledger in /Users/simon/src/hledger/hledger with timeit Benchmarking hledger in /Users/simon/src/hledger/hledger with timeit
read bench/10000x1000x10.journal [1.63s] read bench/10000x1000x10.journal [1.57s]
print [1.41s] print [1.29s]
register [1.83s] register [1.92s]
balance [0.24s] balance [0.21s]
stats [0.22s] stats [0.23s]
Total: 5.33s Total: 5.22s
Benchmark bench: FINISH Benchmark bench: FINISH
``` ```

View File

@ -25,7 +25,7 @@ tested on unix, mac and windows. See [Download](download.html) for
installation help. installation help.
This manual is the reference for every part of hledger's functionality; This manual is the reference for every part of hledger's functionality;
this version documents hledger and hledger-web 0.26.98 this version documents hledger and hledger-web 0.27
<!-- [hledger 0.25](http://hackage.haskell.org/package/hledger-0.25) --> <!-- [hledger 0.25](http://hackage.haskell.org/package/hledger-0.25) -->
<!-- and [hledger-web 0.25](http://hackage.haskell.org/package/hledger-web-0.25). --> <!-- and [hledger-web 0.25](http://hackage.haskell.org/package/hledger-web-0.25). -->
If you find anything missing or incorrect, please report it as a bug. If you find anything missing or incorrect, please report it as a bug.

View File

@ -3,7 +3,7 @@
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
name: hledger-lib name: hledger-lib
version: 0.26.98 version: 0.27
stability: stable stability: stable
category: Finance category: Finance
synopsis: Core data types, parsers and functionality for the hledger accounting tools synopsis: Core data types, parsers and functionality for the hledger accounting tools

View File

@ -9,7 +9,7 @@
# - conditional blocks # - conditional blocks
name : hledger-lib name : hledger-lib
version : '0.26.98' version : '0.27'
stability : stable stability : stable
category : Finance, Console category : Finance, Console
synopsis : Core data types, parsers and functionality for the hledger accounting tools synopsis : Core data types, parsers and functionality for the hledger accounting tools

View File

@ -3,7 +3,7 @@
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
name: hledger-ui name: hledger-ui
version: 0.26.98 version: 0.27
stability: beta stability: beta
category: Finance, Console category: Finance, Console
synopsis: Curses-style user interface for the hledger accounting tool synopsis: Curses-style user interface for the hledger accounting tool
@ -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 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) if flag(threaded)
ghc-options: -threaded ghc-options: -threaded
cpp-options: -DVERSION="0.26.98" cpp-options: -DVERSION="0.27"
build-depends: build-depends:
hledger == 0.26.98 hledger == 0.27
, hledger-lib == 0.26.98 , hledger-lib == 0.27
, base >= 3 && < 5 , base >= 3 && < 5
, base-compat >= 0.8.1 , base-compat >= 0.8.1
, brick >= 0.2 && < 0.3 , brick >= 0.2 && < 0.3

View File

@ -9,7 +9,7 @@
# - conditional blocks # - conditional blocks
name : hledger-ui name : hledger-ui
version : '0.26.98' version : '0.27'
stability : beta stability : beta
category : Finance, Console category : Finance, Console
synopsis : Curses-style user interface for the hledger accounting tool synopsis : Curses-style user interface for the hledger accounting tool
@ -54,7 +54,7 @@ ghc-options:
-fno-warn-type-defaults -fno-warn-type-defaults
-fno-warn-orphans -fno-warn-orphans
cpp-options: -DVERSION="0.26.98" cpp-options: -DVERSION="0.27"
executables: executables:
hledger-ui: hledger-ui:
@ -65,8 +65,8 @@ executables:
ghc-options: ghc-options:
-threaded -threaded
dependencies: dependencies:
- hledger == 0.26.98 - hledger == 0.27
- hledger-lib == 0.26.98 - hledger-lib == 0.27
- base >= 3 && < 5 - base >= 3 && < 5
- base-compat >= 0.8.1 - base-compat >= 0.8.1
- brick >= 0.2 && < 0.3 - brick >= 0.2 && < 0.3

View File

@ -3,7 +3,7 @@
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
name: hledger-web name: hledger-web
version: 0.26.98 version: 0.27
stability: stable stability: stable
category: Finance category: Finance
synopsis: Web interface for the hledger accounting tool synopsis: Web interface for the hledger accounting tool
@ -125,12 +125,12 @@ flag old-locale
library library
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans 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.26.98" cpp-options: -DVERSION="0.27"
if flag(dev) || flag(library-only) if flag(dev) || flag(library-only)
cpp-options: -DDEVELOPMENT cpp-options: -DDEVELOPMENT
build-depends: build-depends:
hledger-lib == 0.26.98 hledger-lib == 0.27
, hledger == 0.26.98 , hledger == 0.27
, base >= 4 && < 5 , base >= 4 && < 5
, base-compat >= 0.8.1 , base-compat >= 0.8.1
, blaze-html , blaze-html
@ -198,12 +198,12 @@ executable hledger-web
ghc-options: -threaded ghc-options: -threaded
if flag(dev) if flag(dev)
ghc-options: -O0 ghc-options: -O0
cpp-options: -DVERSION="0.26.98" cpp-options: -DVERSION="0.27"
if flag(dev) if flag(dev)
cpp-options: -DDEVELOPMENT cpp-options: -DDEVELOPMENT
build-depends: build-depends:
hledger-lib == 0.26.98 hledger-lib == 0.27
, hledger == 0.26.98 , hledger == 0.27
, base >= 4 && < 5 , base >= 4 && < 5
, base-compat >= 0.8.1 , base-compat >= 0.8.1
, blaze-html , blaze-html
@ -235,7 +235,7 @@ executable hledger-web
, yesod-form , yesod-form
, yesod-static , yesod-static
, json , json
, hledger-web == 0.26.98 , hledger-web == 0.27
if flag(old-locale) if flag(old-locale)
build-depends: time < 1.5, old-locale build-depends: time < 1.5, old-locale
@ -253,10 +253,10 @@ test-suite test
hs-source-dirs: hs-source-dirs:
tests tests
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans 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.26.98" cpp-options: -DVERSION="0.27"
build-depends: build-depends:
hledger-lib == 0.26.98 hledger-lib == 0.27
, hledger == 0.26.98 , hledger == 0.27
, base >= 4 && < 5 , base >= 4 && < 5
, base-compat >= 0.8.1 , base-compat >= 0.8.1
, blaze-html , blaze-html

View File

@ -9,7 +9,7 @@
# - conditional blocks # - conditional blocks
name : hledger-web name : hledger-web
version : '0.26.98' version : '0.27'
stability : stable stability : stable
category : Finance category : Finance
synopsis : Web interface for the hledger accounting tool synopsis : Web interface for the hledger accounting tool
@ -123,8 +123,8 @@ extra-source-files:
# default: False # default: False
dependencies: dependencies:
- hledger-lib == 0.26.98 - hledger-lib == 0.27
- hledger == 0.26.98 - hledger == 0.27
- base >= 4 && < 5 - base >= 4 && < 5
- base-compat >= 0.8.1 - base-compat >= 0.8.1
- blaze-html - blaze-html
@ -192,7 +192,7 @@ ghc-options:
# # -- EmptyDataDecls # # -- EmptyDataDecls
# # -- NoMonomorphismRestriction # # -- NoMonomorphismRestriction
cpp-options: -DVERSION="0.26.98" cpp-options: -DVERSION="0.27"
# XXX # XXX
# if flag(dev) || flag(library-only) # if flag(dev) || flag(library-only)
# cpp-options: -DDEVELOPMENT # cpp-options: -DDEVELOPMENT
@ -232,7 +232,7 @@ executables:
source-dirs: app source-dirs: app
main: main.hs main: main.hs
dependencies: dependencies:
- hledger-web == 0.26.98 - hledger-web == 0.27
tests: tests:
test: test:

View File

@ -3,7 +3,7 @@
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
name: hledger name: hledger
version: 0.26.98 version: 0.27
stability: stable stability: stable
category: Finance, Console category: Finance, Console
synopsis: Command-line interface for the hledger accounting tool synopsis: Command-line interface for the hledger accounting tool
@ -55,9 +55,9 @@ flag old-locale
library library
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans 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.26.98" cpp-options: -DVERSION="0.27"
build-depends: build-depends:
hledger-lib == 0.26.98 hledger-lib == 0.27
, base >= 4.3 && < 5 , base >= 4.3 && < 5
, base-compat >= 0.8.1 , base-compat >= 0.8.1
, containers , 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 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) if flag(threaded)
ghc-options: -threaded ghc-options: -threaded
cpp-options: -DVERSION="0.26.98" cpp-options: -DVERSION="0.27"
build-depends: build-depends:
hledger-lib == 0.26.98 hledger-lib == 0.27
, base >= 4.3 && < 5 , base >= 4.3 && < 5
, base-compat >= 0.8.1 , base-compat >= 0.8.1
, containers , containers
@ -154,7 +154,7 @@ executable hledger
, tabular >= 0.2 && < 0.3 , tabular >= 0.2 && < 0.3
, utf8-string >= 0.3.5 && < 1.1 , utf8-string >= 0.3.5 && < 1.1
, wizards == 1.0.* , wizards == 1.0.*
, hledger == 0.26.98 , hledger == 0.27
if impl(ghc >= 7.10) if impl(ghc >= 7.10)
build-depends: shakespeare >= 2.0.2.2 && < 2.1 build-depends: shakespeare >= 2.0.2.2 && < 2.1
@ -182,9 +182,9 @@ test-suite test
hs-source-dirs: hs-source-dirs:
test test
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans 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.26.98" cpp-options: -DVERSION="0.27"
build-depends: build-depends:
hledger-lib == 0.26.98 hledger-lib == 0.27
, base >= 4.3 && < 5 , base >= 4.3 && < 5
, base-compat >= 0.8.1 , base-compat >= 0.8.1
, containers , containers

View File

@ -9,7 +9,7 @@
# - conditional blocks # - conditional blocks
name : hledger name : hledger
version : '0.26.98' version : '0.27'
stability : stable stability : stable
category : Finance, Console category : Finance, Console
synopsis : Command-line interface for the hledger accounting tool synopsis : Command-line interface for the hledger accounting tool
@ -60,7 +60,7 @@ flag:
if true then depend on time < 1.5 together with old-locale. if true then depend on time < 1.5 together with old-locale.
dependencies: dependencies:
- hledger-lib == 0.26.98 - hledger-lib == 0.27
- base >= 4.3 && < 5 - base >= 4.3 && < 5
- base-compat >= 0.8.1 - base-compat >= 0.8.1
- containers - containers
@ -114,7 +114,7 @@ ghc-options:
-fno-warn-type-defaults -fno-warn-type-defaults
-fno-warn-orphans -fno-warn-orphans
cpp-options: -DVERSION="0.26.98" cpp-options: -DVERSION="0.27"
library: library:
# source-dirs: . # XXX includes Setup and uncommitted stuff # source-dirs: . # XXX includes Setup and uncommitted stuff
@ -146,7 +146,7 @@ executables:
ghc-options: ghc-options:
-threaded -threaded
dependencies: dependencies:
- hledger == 0.26.98 - hledger == 0.27
tests: tests:
test: test: