From af11cd6243b91acb3c580f29acb8ac478b5bf15c Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Tue, 6 Jun 2017 09:21:51 -0700 Subject: [PATCH] bump package versions to 1.2.98 (1.3 alpha) --- .version | 2 +- hledger-api/hledger-api.cabal | 8 ++++---- hledger-api/hledger-api.hs | 4 ++-- hledger-api/package.yaml | 8 ++++---- 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 | 24 ++++++++++++------------ hledger-web/package.yaml | 16 ++++++++-------- hledger/hledger.cabal | 22 +++++++++++----------- hledger/package.yaml | 22 +++++++++++----------- 12 files changed, 63 insertions(+), 63 deletions(-) diff --git a/.version b/.version index 5625e59da..dd91a8b71 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.2 +1.2.98 diff --git a/hledger-api/hledger-api.cabal b/hledger-api/hledger-api.cabal index b881db68f..8366a91a7 100644 --- a/hledger-api/hledger-api.cabal +++ b/hledger-api/hledger-api.cabal @@ -3,7 +3,7 @@ -- see: https://github.com/sol/hpack name: hledger-api -version: 1.2 +version: 1.2.98 synopsis: Web API server for the hledger accounting tool description: This is a simple web API server for hledger data. It comes with a series of simple client-side web app examples. @@ -44,10 +44,10 @@ source-repository head executable hledger-api main-is: hledger-api.hs ghc-options: -threaded - cpp-options: -DVERSION="1.2" + cpp-options: -DVERSION="1.2.98" build-depends: - hledger-lib >= 1.2 && < 1.3 - , hledger >= 1.2 && < 1.3 + hledger-lib >= 1.2.98 + , hledger >= 1.2.98 , base >=4.8 && <5 , aeson , bytestring diff --git a/hledger-api/hledger-api.hs b/hledger-api/hledger-api.hs index 3d45c5d36..4b041df04 100644 --- a/hledger-api/hledger-api.hs +++ b/hledger-api/hledger-api.hs @@ -35,12 +35,12 @@ import Text.Printf import Hledger.Query import Hledger.Cli hiding (Reader, version) -hledgerApiVersion="1.2" +hledgerApiVersion="1.2.98" -- https://github.com/docopt/docopt.hs#readme doc :: Docopt doc = [docopt| -hledger-api 1.2 +hledger-api 1.2.98 Serves hledger data and reports as a JSON web API. diff --git a/hledger-api/package.yaml b/hledger-api/package.yaml index 3ce09eacf..9d63543ad 100644 --- a/hledger-api/package.yaml +++ b/hledger-api/package.yaml @@ -1,5 +1,5 @@ name: hledger-api -version: '1.2' +version: '1.2.98' synopsis: Web API server for the hledger accounting tool description: | This is a simple web API server for hledger data. @@ -27,8 +27,8 @@ data-files: - doc/hledger-api.1.txt - doc/hledger-api.1.info dependencies: -- hledger-lib >= 1.2 && < 1.3 -- hledger >= 1.2 && < 1.3 +- hledger-lib >= 1.2.98 +- hledger >= 1.2.98 - base >=4.8 && <5 - aeson - bytestring @@ -51,6 +51,6 @@ executables: hledger-api: main: hledger-api.hs ghc-options: -threaded - cpp-options: -DVERSION="1.2" + cpp-options: -DVERSION="1.2.98" stability: alpha tested-with: GHC==7.10.3, GHC==8.0 diff --git a/hledger-lib/hledger-lib.cabal b/hledger-lib/hledger-lib.cabal index c1b29af34..670abcada 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: 1.2 +version: 1.2.98 synopsis: Core data types, parsers and functionality for the hledger accounting tools description: This is a reusable library containing hledger's core functionality. . diff --git a/hledger-lib/package.yaml b/hledger-lib/package.yaml index 6b0603794..fd0c59a4d 100644 --- a/hledger-lib/package.yaml +++ b/hledger-lib/package.yaml @@ -1,5 +1,5 @@ name: hledger-lib -version: '1.2' +version: '1.2.98' synopsis: Core data types, parsers and functionality for the hledger accounting tools description: | This is a reusable library containing hledger's core functionality. diff --git a/hledger-ui/hledger-ui.cabal b/hledger-ui/hledger-ui.cabal index 721789217..e585d6387 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: 1.2 +version: 1.2.98 synopsis: Curses-style user interface for the hledger accounting tool description: This is hledger's curses-style interface. It is simpler and more convenient for browsing data than the command-line interface, @@ -55,10 +55,10 @@ executable hledger-ui hs-source-dirs: ./. 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="1.2" + cpp-options: -DVERSION="1.2.98" build-depends: - hledger >= 1.2 && < 1.3 - , hledger-lib >= 1.2 && < 1.3 + hledger >= 1.2.98 + , hledger-lib >= 1.2.98 , ansi-terminal >= 0.6.2.3 && < 0.7 , async , base >= 4.8 && < 5 diff --git a/hledger-ui/package.yaml b/hledger-ui/package.yaml index 0b597151f..3ce0293bb 100644 --- a/hledger-ui/package.yaml +++ b/hledger-ui/package.yaml @@ -1,5 +1,5 @@ name : hledger-ui -version : '1.2' +version : '1.2.98' synopsis : Curses-style user interface for the hledger accounting tool description : | This is hledger's curses-style interface. @@ -35,7 +35,7 @@ flags: description: If building with time < 1.5, also depend on old-locale. Set automatically by cabal. manual: false default: false -cpp-options: -DVERSION="1.2" +cpp-options: -DVERSION="1.2.98" executables: hledger-ui: source-dirs: . @@ -48,8 +48,8 @@ executables: -fno-warn-type-defaults -fno-warn-orphans dependencies: - - hledger >= 1.2 && < 1.3 - - hledger-lib >= 1.2 && < 1.3 + - hledger >= 1.2.98 + - hledger-lib >= 1.2.98 - ansi-terminal >= 0.6.2.3 && < 0.7 - async - base >= 4.8 && < 5 diff --git a/hledger-web/hledger-web.cabal b/hledger-web/hledger-web.cabal index 27a6c08e9..f38d9cbf4 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: 1.2 +version: 1.2.98 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 @@ -125,10 +125,10 @@ flag threaded 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="1.2" + cpp-options: -DVERSION="1.2.98" build-depends: - hledger-lib >= 1.2 && < 1.3 - , hledger >= 1.2 && < 1.3 + hledger-lib >= 1.2.98 + , hledger >= 1.2.98 , base >=4.8 && <5 , base-compat >=0.8.1 , blaze-html @@ -199,10 +199,10 @@ executable hledger-web 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 - cpp-options: -DVERSION="1.2" + cpp-options: -DVERSION="1.2.98" build-depends: - hledger-lib >= 1.2 && < 1.3 - , hledger >= 1.2 && < 1.3 + hledger-lib >= 1.2.98 + , hledger >= 1.2.98 , base >=4.8 && <5 , base-compat >=0.8.1 , blaze-html @@ -234,7 +234,7 @@ executable hledger-web , yesod-static , json , parsec >=3 - , hledger-web == 1.2 + , hledger-web == 1.2.98 if flag(library-only) buildable: False if flag(threaded) @@ -261,10 +261,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="1.2" + cpp-options: -DVERSION="1.2.98" build-depends: - hledger-lib >= 1.2 && < 1.3 - , hledger >= 1.2 && < 1.3 + hledger-lib >= 1.2.98 + , hledger >= 1.2.98 , base >=4.8 && <5 , base-compat >=0.8.1 , blaze-html @@ -295,7 +295,7 @@ test-suite test , yesod-form , yesod-static , json - , hledger-web == 1.2 + , hledger-web == 1.2.98 , hspec , yesod-test if flag(oldtime) diff --git a/hledger-web/package.yaml b/hledger-web/package.yaml index ff4d139bc..b2b09690d 100644 --- a/hledger-web/package.yaml +++ b/hledger-web/package.yaml @@ -1,5 +1,5 @@ name: hledger-web -version: '1.2' +version: '1.2.98' synopsis: Web interface for the hledger accounting tool description: | This is hledger's web interface. @@ -60,8 +60,8 @@ flags: manual: false default: false dependencies: -- hledger-lib >= 1.2 && < 1.3 -- hledger >= 1.2 && < 1.3 +- hledger-lib >= 1.2.98 +- hledger >= 1.2.98 - base >=4.8 && <5 - base-compat >=0.8.1 - blaze-html @@ -100,7 +100,7 @@ ghc-options: - -fno-warn-type-defaults - -fno-warn-orphans library: - cpp-options: -DVERSION="1.2" + cpp-options: -DVERSION="1.2.98" exposed-modules: - Application - Foundation @@ -139,10 +139,10 @@ executables: hledger-web: main: main.hs source-dirs: app - cpp-options: -DVERSION="1.2" + cpp-options: -DVERSION="1.2.98" dependencies: - parsec >=3 - - hledger-web == 1.2 + - hledger-web == 1.2.98 when: - condition: flag(library-only) buildable: false @@ -167,9 +167,9 @@ tests: test: main: main.hs source-dirs: tests - cpp-options: -DVERSION="1.2" + cpp-options: -DVERSION="1.2.98" dependencies: - - hledger-web == 1.2 + - hledger-web == 1.2.98 - hspec - yesod-test when: diff --git a/hledger/hledger.cabal b/hledger/hledger.cabal index d71e17d0a..e92e06434 100644 --- a/hledger/hledger.cabal +++ b/hledger/hledger.cabal @@ -3,7 +3,7 @@ -- see: https://github.com/sol/hpack name: hledger -version: 1.2 +version: 1.2.98 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 @@ -80,7 +80,7 @@ flag threaded 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="1.2" + cpp-options: -DVERSION="1.2.98" build-depends: base >=4.8 && <5 , base-compat >=0.8.1 @@ -93,7 +93,7 @@ library , process , temporary , tabular >=0.2 && <0.3 - , hledger-lib >= 1.2 && < 1.3 + , hledger-lib >= 1.2.98 , bytestring , containers , unordered-containers @@ -166,7 +166,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 - cpp-options: -DVERSION="1.2" + cpp-options: -DVERSION="1.2.98" build-depends: base >=4.8 && <5 , base-compat >=0.8.1 @@ -179,8 +179,8 @@ executable hledger , process , temporary , tabular >=0.2 && <0.3 - , hledger-lib >= 1.2 && < 1.3 - , hledger == 1.2 + , hledger-lib >= 1.2.98 + , hledger == 1.2.98 , bytestring , containers , unordered-containers @@ -229,7 +229,7 @@ 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="1.2" + cpp-options: -DVERSION="1.2.98" build-depends: base >=4.8 && <5 , base-compat >=0.8.1 @@ -242,8 +242,8 @@ test-suite test , process , temporary , tabular >=0.2 && <0.3 - , hledger-lib >= 1.2 && < 1.3 - , hledger == 1.2 + , hledger-lib >= 1.2.98 + , hledger == 1.2.98 , bytestring , containers , unordered-containers @@ -304,8 +304,8 @@ benchmark bench , process , temporary , tabular >=0.2 && <0.3 - , hledger-lib >= 1.2 && < 1.3 - , hledger == 1.2 + , hledger-lib >= 1.2.98 + , hledger == 1.2.98 , criterion , html , timeit diff --git a/hledger/package.yaml b/hledger/package.yaml index 627bbf72b..a6575adad 100644 --- a/hledger/package.yaml +++ b/hledger/package.yaml @@ -1,5 +1,5 @@ name: hledger -version: '1.2' +version: '1.2.98' synopsis: Command-line interface for the hledger accounting tool description: | This is hledger's command-line interface. @@ -82,7 +82,7 @@ ghc-options: - -fno-warn-type-defaults - -fno-warn-orphans library: - cpp-options: -DVERSION="1.2" + cpp-options: -DVERSION="1.2.98" exposed-modules: - Hledger.Cli - Hledger.Cli.Main @@ -107,7 +107,7 @@ library: - Hledger.Cli.Stats - Text.Tabular.AsciiWide dependencies: - - hledger-lib >= 1.2 && < 1.3 + - hledger-lib >= 1.2.98 - bytestring - containers - unordered-containers @@ -155,10 +155,10 @@ executables: hledger: main: hledger-cli.hs source-dirs: app - cpp-options: -DVERSION="1.2" + cpp-options: -DVERSION="1.2.98" dependencies: - - hledger-lib >= 1.2 && < 1.3 - - hledger == 1.2 + - hledger-lib >= 1.2.98 + - hledger == 1.2.98 - bytestring - containers - unordered-containers @@ -206,10 +206,10 @@ tests: test: main: test.hs source-dirs: test - cpp-options: -DVERSION="1.2" + cpp-options: -DVERSION="1.2.98" dependencies: - - hledger-lib >= 1.2 && < 1.3 - - hledger == 1.2 + - hledger-lib >= 1.2.98 + - hledger == 1.2.98 - bytestring - containers - unordered-containers @@ -258,8 +258,8 @@ benchmarks: main: bench.hs source-dirs: bench dependencies: - - hledger-lib >= 1.2 && < 1.3 - - hledger == 1.2 + - hledger-lib >= 1.2.98 + - hledger == 1.2.98 - criterion - html - timeit