From bfb4a38afbb8e9e7684e3bf5b28b31b3251a8fb6 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sat, 30 Sep 2017 11:45:33 -1000 Subject: [PATCH] update cabal files --- hledger-api/hledger-api.cabal | 8 ++++---- hledger-lib/hledger-lib.cabal | 2 +- hledger-ui/hledger-ui.cabal | 8 ++++---- hledger-web/hledger-web.cabal | 20 ++++++++++---------- hledger/hledger.cabal | 16 ++++++++-------- 5 files changed, 27 insertions(+), 27 deletions(-) diff --git a/hledger-api/hledger-api.cabal b/hledger-api/hledger-api.cabal index c6bbdf508..86fceb49e 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.3.99 +version: 1.4 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.3.99" + cpp-options: -DVERSION="1.4" build-depends: - hledger-lib >= 1.3.99 && < 1.4 - , hledger >= 1.3.99 && < 1.4 + hledger-lib >= 1.4 && < 1.5 + , hledger >= 1.4 && < 1.5 , base >=4.8 && <5 , aeson , bytestring diff --git a/hledger-lib/hledger-lib.cabal b/hledger-lib/hledger-lib.cabal index 5f418f0b8..5d78f52ee 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.3.99 +version: 1.4 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 0f3ef6949..1ddfdc1b6 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.3.99 +version: 1.4 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, @@ -50,10 +50,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.3.99" + cpp-options: -DVERSION="1.4" build-depends: - hledger >= 1.3.99 && < 1.4 - , hledger-lib >= 1.3.99 && < 1.4 + hledger >= 1.4 && < 1.5 + , hledger-lib >= 1.4 && < 1.5 , ansi-terminal >= 0.6.2.3 && < 0.8 , async , base >= 4.8 && < 5 diff --git a/hledger-web/hledger-web.cabal b/hledger-web/hledger-web.cabal index 02eb7c988..b4332f691 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.3.99 +version: 1.4 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 @@ -120,10 +120,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.3.99" + cpp-options: -DVERSION="1.4" build-depends: - hledger-lib >= 1.3.99 && < 1.4 - , hledger >= 1.3.99 && < 1.4 + hledger-lib >= 1.4 && < 1.5 + , hledger >= 1.4 && < 1.5 , base >=4.8 && <5 , base-compat >=0.8.1 , blaze-html @@ -188,10 +188,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.3.99" + cpp-options: -DVERSION="1.4" build-depends: - hledger-lib >= 1.3.99 && < 1.4 - , hledger >= 1.3.99 && < 1.4 + hledger-lib >= 1.4 && < 1.5 + , hledger >= 1.4 && < 1.5 , base >=4.8 && <5 , base-compat >=0.8.1 , blaze-html @@ -243,10 +243,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.3.99" + cpp-options: -DVERSION="1.4" build-depends: - hledger-lib >= 1.3.99 && < 1.4 - , hledger >= 1.3.99 && < 1.4 + hledger-lib >= 1.4 && < 1.5 + , hledger >= 1.4 && < 1.5 , base >=4.8 && <5 , base-compat >=0.8.1 , blaze-html diff --git a/hledger/hledger.cabal b/hledger/hledger.cabal index 90f090b6a..7ca141a90 100644 --- a/hledger/hledger.cabal +++ b/hledger/hledger.cabal @@ -3,7 +3,7 @@ -- see: https://github.com/sol/hpack name: hledger -version: 1.3.99 +version: 1.4 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 @@ -75,7 +75,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.3.99" + cpp-options: -DVERSION="1.4" build-depends: base >=4.8 && <5 , base-compat >=0.8.1 @@ -91,7 +91,7 @@ library , tabular >=0.2 && <0.3 , time >=1.5 , utility-ht >= 0.0.13 - , hledger-lib >= 1.3.99 && < 1.4 + , hledger-lib >= 1.4 && < 1.5 , bytestring , containers , unordered-containers @@ -156,7 +156,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.3.99" + cpp-options: -DVERSION="1.4" build-depends: base >=4.8 && <5 , base-compat >=0.8.1 @@ -172,7 +172,7 @@ executable hledger , tabular >=0.2 && <0.3 , time >=1.5 , utility-ht >= 0.0.13 - , hledger-lib >= 1.3.99 && < 1.4 + , hledger-lib >= 1.4 && < 1.5 , hledger , bytestring , containers @@ -205,7 +205,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.3.99" + cpp-options: -DVERSION="1.4" build-depends: base >=4.8 && <5 , base-compat >=0.8.1 @@ -221,7 +221,7 @@ test-suite test , tabular >=0.2 && <0.3 , time >=1.5 , utility-ht >= 0.0.13 - , hledger-lib >= 1.3.99 && < 1.4 + , hledger-lib >= 1.4 && < 1.5 , hledger , bytestring , containers @@ -269,7 +269,7 @@ benchmark bench , tabular >=0.2 && <0.3 , time >=1.5 , utility-ht >= 0.0.13 - , hledger-lib >= 1.3.99 && < 1.4 + , hledger-lib >= 1.4 && < 1.5 , hledger , criterion , html