From a5fd56223c8ac4bf771336b966616779c23120c6 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 30 Oct 2015 13:18:55 -0700 Subject: [PATCH] bump version to 0.27 --- .version | 2 +- doc/developer-guide.md | 26 +++++++++++++------------- doc/manual.md | 2 +- hledger-lib/hledger-lib.cabal | 2 +- hledger-lib/package.yaml | 2 +- hledger-ui/hledger-ui.cabal | 8 ++++---- hledger-ui/package.yaml | 8 ++++---- hledger-web/hledger-web.cabal | 22 +++++++++++----------- hledger-web/package.yaml | 10 +++++----- hledger/hledger.cabal | 16 ++++++++-------- hledger/package.yaml | 8 ++++---- 11 files changed, 53 insertions(+), 53 deletions(-) diff --git a/.version b/.version index caa5383b5..5a9e6bda2 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.26.98 +0.27 diff --git a/doc/developer-guide.md b/doc/developer-guide.md index 47d4f072c..2d213dedb 100644 --- a/doc/developer-guide.md +++ b/doc/developer-guide.md @@ -284,11 +284,11 @@ The resulting executables will be somewhere under .stack-work, eg in ```shell $ make build stack build -hledger-lib-0.26.98: configure -hledger-lib-0.26.98: build -hledger-lib-0.26.98: install -hledger-0.26.98: configure -hledger-0.26.98: build +hledger-lib-0.27: configure +hledger-lib-0.27: build +hledger-lib-0.27: install +hledger-0.27: configure +hledger-0.27: build 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 stack install 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/: - hledger-web @@ -341,16 +341,16 @@ which by default shows quick elapsed-time measurements for several operations on $ stack bench hledger NOTE: the bench command is functionally equivalent to 'build --bench' ... -hledger-0.26.98: benchmarks +hledger-0.27: benchmarks Running 1 benchmarks... Benchmark bench: RUNNING... Benchmarking hledger in /Users/simon/src/hledger/hledger with timeit -read bench/10000x1000x10.journal [1.63s] -print [1.41s] -register [1.83s] -balance [0.24s] -stats [0.22s] -Total: 5.33s +read bench/10000x1000x10.journal [1.57s] +print [1.29s] +register [1.92s] +balance [0.21s] +stats [0.23s] +Total: 5.22s Benchmark bench: FINISH ``` diff --git a/doc/manual.md b/doc/manual.md index 288860239..c864e5ab5 100644 --- a/doc/manual.md +++ b/doc/manual.md @@ -25,7 +25,7 @@ tested on unix, mac and windows. See [Download](download.html) for installation help. 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 If you find anything missing or incorrect, please report it as a bug. diff --git a/hledger-lib/hledger-lib.cabal b/hledger-lib/hledger-lib.cabal index e990df860..b218db27c 100644 --- a/hledger-lib/hledger-lib.cabal +++ b/hledger-lib/hledger-lib.cabal @@ -3,7 +3,7 @@ -- see: https://github.com/sol/hpack name: hledger-lib -version: 0.26.98 +version: 0.27 stability: stable category: Finance synopsis: Core data types, parsers and functionality for the hledger accounting tools diff --git a/hledger-lib/package.yaml b/hledger-lib/package.yaml index 0873e4dde..2360e203e 100644 --- a/hledger-lib/package.yaml +++ b/hledger-lib/package.yaml @@ -9,7 +9,7 @@ # - conditional blocks name : hledger-lib -version : '0.26.98' +version : '0.27' stability : stable category : Finance, Console synopsis : Core data types, parsers and functionality for the hledger accounting tools diff --git a/hledger-ui/hledger-ui.cabal b/hledger-ui/hledger-ui.cabal index fcc06a451..c51cdea00 100644 --- a/hledger-ui/hledger-ui.cabal +++ b/hledger-ui/hledger-ui.cabal @@ -3,7 +3,7 @@ -- see: https://github.com/sol/hpack name: hledger-ui -version: 0.26.98 +version: 0.27 stability: beta category: Finance, Console 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 if flag(threaded) ghc-options: -threaded - cpp-options: -DVERSION="0.26.98" + cpp-options: -DVERSION="0.27" build-depends: - hledger == 0.26.98 - , hledger-lib == 0.26.98 + hledger == 0.27 + , hledger-lib == 0.27 , base >= 3 && < 5 , base-compat >= 0.8.1 , brick >= 0.2 && < 0.3 diff --git a/hledger-ui/package.yaml b/hledger-ui/package.yaml index 4894e547d..d69606cdd 100644 --- a/hledger-ui/package.yaml +++ b/hledger-ui/package.yaml @@ -9,7 +9,7 @@ # - conditional blocks name : hledger-ui -version : '0.26.98' +version : '0.27' stability : beta category : Finance, Console synopsis : Curses-style user interface for the hledger accounting tool @@ -54,7 +54,7 @@ ghc-options: -fno-warn-type-defaults -fno-warn-orphans -cpp-options: -DVERSION="0.26.98" +cpp-options: -DVERSION="0.27" executables: hledger-ui: @@ -65,8 +65,8 @@ executables: ghc-options: -threaded dependencies: - - hledger == 0.26.98 - - hledger-lib == 0.26.98 + - hledger == 0.27 + - hledger-lib == 0.27 - base >= 3 && < 5 - base-compat >= 0.8.1 - brick >= 0.2 && < 0.3 diff --git a/hledger-web/hledger-web.cabal b/hledger-web/hledger-web.cabal index 70398aae9..5a7a5567b 100644 --- a/hledger-web/hledger-web.cabal +++ b/hledger-web/hledger-web.cabal @@ -3,7 +3,7 @@ -- see: https://github.com/sol/hpack name: hledger-web -version: 0.26.98 +version: 0.27 stability: stable category: Finance synopsis: Web interface for the hledger accounting tool @@ -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.26.98" + cpp-options: -DVERSION="0.27" if flag(dev) || flag(library-only) cpp-options: -DDEVELOPMENT build-depends: - hledger-lib == 0.26.98 - , hledger == 0.26.98 + hledger-lib == 0.27 + , hledger == 0.27 , 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.26.98" + cpp-options: -DVERSION="0.27" if flag(dev) cpp-options: -DDEVELOPMENT build-depends: - hledger-lib == 0.26.98 - , hledger == 0.26.98 + hledger-lib == 0.27 + , hledger == 0.27 , 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.26.98 + , hledger-web == 0.27 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.26.98" + cpp-options: -DVERSION="0.27" build-depends: - hledger-lib == 0.26.98 - , hledger == 0.26.98 + hledger-lib == 0.27 + , hledger == 0.27 , base >= 4 && < 5 , base-compat >= 0.8.1 , blaze-html diff --git a/hledger-web/package.yaml b/hledger-web/package.yaml index d4ea57827..8ca9172dc 100644 --- a/hledger-web/package.yaml +++ b/hledger-web/package.yaml @@ -9,7 +9,7 @@ # - conditional blocks name : hledger-web -version : '0.26.98' +version : '0.27' stability : stable category : Finance synopsis : Web interface for the hledger accounting tool @@ -123,8 +123,8 @@ extra-source-files: # default: False dependencies: - - hledger-lib == 0.26.98 - - hledger == 0.26.98 + - hledger-lib == 0.27 + - hledger == 0.27 - base >= 4 && < 5 - base-compat >= 0.8.1 - blaze-html @@ -192,7 +192,7 @@ ghc-options: # # -- EmptyDataDecls # # -- NoMonomorphismRestriction -cpp-options: -DVERSION="0.26.98" +cpp-options: -DVERSION="0.27" # XXX # if flag(dev) || flag(library-only) # cpp-options: -DDEVELOPMENT @@ -232,7 +232,7 @@ executables: source-dirs: app main: main.hs dependencies: - - hledger-web == 0.26.98 + - hledger-web == 0.27 tests: test: diff --git a/hledger/hledger.cabal b/hledger/hledger.cabal index 06753b09a..8781448b5 100644 --- a/hledger/hledger.cabal +++ b/hledger/hledger.cabal @@ -3,7 +3,7 @@ -- see: https://github.com/sol/hpack name: hledger -version: 0.26.98 +version: 0.27 stability: stable category: Finance, Console synopsis: Command-line interface for the hledger accounting tool @@ -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.26.98" + cpp-options: -DVERSION="0.27" build-depends: - hledger-lib == 0.26.98 + hledger-lib == 0.27 , 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.26.98" + cpp-options: -DVERSION="0.27" build-depends: - hledger-lib == 0.26.98 + hledger-lib == 0.27 , 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.26.98 + , hledger == 0.27 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.26.98" + cpp-options: -DVERSION="0.27" build-depends: - hledger-lib == 0.26.98 + hledger-lib == 0.27 , base >= 4.3 && < 5 , base-compat >= 0.8.1 , containers diff --git a/hledger/package.yaml b/hledger/package.yaml index 5e9d2ae71..83da07219 100644 --- a/hledger/package.yaml +++ b/hledger/package.yaml @@ -9,7 +9,7 @@ # - conditional blocks name : hledger -version : '0.26.98' +version : '0.27' stability : stable category : Finance, Console 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. dependencies: - - hledger-lib == 0.26.98 + - hledger-lib == 0.27 - base >= 4.3 && < 5 - base-compat >= 0.8.1 - containers @@ -114,7 +114,7 @@ ghc-options: -fno-warn-type-defaults -fno-warn-orphans -cpp-options: -DVERSION="0.26.98" +cpp-options: -DVERSION="0.27" library: # source-dirs: . # XXX includes Setup and uncommitted stuff @@ -146,7 +146,7 @@ executables: ghc-options: -threaded dependencies: - - hledger == 0.26.98 + - hledger == 0.27 tests: test: