bump version to 1.9.99

This commit is contained in:
Simon Michael 2018-04-04 15:26:56 +01:00
parent 7565687fcb
commit 4ea02bf1cb
12 changed files with 51 additions and 51 deletions

View File

@ -1 +1 @@
1.9 1.9.99

View File

@ -8,7 +8,7 @@ m4_define({{_webcombined_}}, m4_ifdef({{WEB && COMBINED}},{{$1}}) )m4_dnl
m4_dnl m4_dnl
m4_define({{_author_}}, {{}})m4_dnl m4_define({{_author_}}, {{}})m4_dnl
m4_define({{_monthyear_}}, {{March 2018}})m4_dnl m4_define({{_monthyear_}}, {{March 2018}})m4_dnl
m4_define({{_version_}}, {{1.9}})m4_dnl m4_define({{_version_}}, {{1.9.99}})m4_dnl
m4_dnl m4_dnl
m4_dnl Links to dev and recent release versions of a manual. m4_dnl Links to dev and recent release versions of a manual.
m4_dnl $1 is the manual's web slug: hledger, hledger-ui, journal, csv etc. m4_dnl $1 is the manual's web slug: hledger, hledger-ui, journal, csv etc.

View File

@ -2,10 +2,10 @@
-- --
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
-- --
-- hash: f3634e33165cee47d5e654d9261a1c38195c0466a0c52c659e5833033a73416a -- hash: c1aecc57a80b7a88ba2774d93d5b1eedc43d04d6dbae964ce94307b643868534
name: hledger-api name: hledger-api
version: 1.9 version: 1.9.99
synopsis: Web API server for the hledger accounting tool synopsis: Web API server for the hledger accounting tool
description: This is a simple web API server for hledger data. description: This is a simple web API server for hledger data.
It comes with a series of simple client-side web app examples. It comes with a series of simple client-side web app examples.
@ -44,7 +44,7 @@ source-repository head
executable hledger-api executable hledger-api
main-is: hledger-api.hs main-is: hledger-api.hs
ghc-options: -threaded ghc-options: -threaded
cpp-options: -DVERSION="1.9" cpp-options: -DVERSION="1.9.99"
build-depends: build-depends:
Decimal Decimal
, aeson , aeson
@ -53,8 +53,8 @@ executable hledger-api
, containers , containers
, docopt , docopt
, either , either
, hledger >=1.9 && <2.0 , hledger >=1.9.99 && <2.0
, hledger-lib >=1.9 && <2.0 , hledger-lib >=1.9.99 && <2.0
, microlens >=0.4 , microlens >=0.4
, microlens-platform >=0.2.3.1 , microlens-platform >=0.2.3.1
, safe , safe

View File

@ -36,12 +36,12 @@ import Text.Printf
import Hledger.Query import Hledger.Query
import Hledger.Cli hiding (Reader, version) import Hledger.Cli hiding (Reader, version)
hledgerApiVersion="1.9" hledgerApiVersion="1.9.99"
-- https://github.com/docopt/docopt.hs#readme -- https://github.com/docopt/docopt.hs#readme
doc :: Docopt doc :: Docopt
doc = [docopt| doc = [docopt|
hledger-api 1.9 hledger-api 1.9.99
Serves hledger data and reports as a JSON web API. Serves hledger data and reports as a JSON web API.

View File

@ -1,5 +1,5 @@
name: hledger-api name: hledger-api
version: '1.9' version: '1.9.99'
synopsis: Web API server for the hledger accounting tool synopsis: Web API server for the hledger accounting tool
description: | description: |
This is a simple web API server for hledger data. This is a simple web API server for hledger data.
@ -32,8 +32,8 @@ extra-source-files:
#data-files: #data-files:
dependencies: dependencies:
- hledger-lib >=1.9 && <2.0 - hledger-lib >=1.9.99 && <2.0
- hledger >=1.9 && <2.0 - hledger >=1.9.99 && <2.0
- base >=4.8 && <4.12 - base >=4.8 && <4.12
- aeson - aeson
- bytestring - bytestring
@ -57,4 +57,4 @@ executables:
hledger-api: hledger-api:
main: hledger-api.hs main: hledger-api.hs
ghc-options: -threaded ghc-options: -threaded
cpp-options: -DVERSION="1.9" cpp-options: -DVERSION="1.9.99"

View File

@ -2,10 +2,10 @@
-- --
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
-- --
-- hash: 151fb38a89818af88d66f068ef87e0af6f8497b1ef11ab825558b8147952c88d -- hash: 2ba00fa0b37a2a5d903566a6ec259c54c68de78ae3de2a27e3f8a071816b2712
name: hledger-lib name: hledger-lib
version: 1.9 version: 1.9.99
synopsis: Core data types, parsers and functionality for the hledger accounting tools synopsis: Core data types, parsers and functionality for the hledger accounting tools
description: This is a reusable library containing hledger's core functionality. description: This is a reusable library containing hledger's core functionality.
. .

View File

@ -1,5 +1,5 @@
name: hledger-lib name: hledger-lib
version: '1.9' version: '1.9.99'
synopsis: Core data types, parsers and functionality for the hledger accounting tools synopsis: Core data types, parsers and functionality for the hledger accounting tools
description: | description: |
This is a reusable library containing hledger's core functionality. This is a reusable library containing hledger's core functionality.

View File

@ -1,5 +1,5 @@
name : hledger-ui name : hledger-ui
version : '1.9' version : '1.9.99'
synopsis : Curses-style user interface for the hledger accounting tool synopsis : Curses-style user interface for the hledger accounting tool
description : | description : |
This is hledger's curses-style interface. This is hledger's curses-style interface.
@ -37,11 +37,11 @@ flags:
manual: false manual: false
default: true default: true
cpp-options: -DVERSION="1.9" cpp-options: -DVERSION="1.9.99"
dependencies: dependencies:
- hledger >=1.9 && <2.0 - hledger >=1.9.99 && <2.0
- hledger-lib >=1.9 && <2.0 - hledger-lib >=1.9.99 && <2.0
- ansi-terminal >=0.6.2.3 - ansi-terminal >=0.6.2.3
- async - async
- base >=4.8 && <4.12 - base >=4.8 && <4.12

View File

@ -2,10 +2,10 @@
-- --
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
-- --
-- hash: 9bcbee0a35b7edb9342cc7f08113385a491beb872a21b2f157a65106c4dea4dd -- hash: 9ed266dc999899788c21fd578199b9e538208aab91294e22147f54f06a373373
name: hledger-web name: hledger-web
version: 1.9 version: 1.9.99
synopsis: Web interface for the hledger accounting tool synopsis: Web interface for the hledger accounting tool
description: This is hledger's web interface. description: This is hledger's web interface.
It provides a more user-friendly and collaborative UI than the It provides a more user-friendly and collaborative UI than the
@ -122,7 +122,7 @@ flag threaded
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="1.9" cpp-options: -DVERSION="1.9.99"
build-depends: build-depends:
HUnit HUnit
, base >=4.8 && <4.12 , base >=4.8 && <4.12
@ -137,8 +137,8 @@ library
, directory , directory
, filepath , filepath
, hjsmin , hjsmin
, hledger >=1.9 && <2.0 , hledger >=1.9.99 && <2.0
, hledger-lib >=1.9 && <2.0 , hledger-lib >=1.9.99 && <2.0
, http-client , http-client
, http-conduit , http-conduit
, json , json
@ -190,7 +190,7 @@ executable hledger-web
hs-source-dirs: hs-source-dirs:
app app
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="1.9" cpp-options: -DVERSION="1.9.99"
build-depends: build-depends:
HUnit HUnit
, base >=4.8 && <4.12 , base >=4.8 && <4.12
@ -205,8 +205,8 @@ executable hledger-web
, directory , directory
, filepath , filepath
, hjsmin , hjsmin
, hledger >=1.9 && <2.0 , hledger >=1.9.99 && <2.0
, hledger-lib >=1.9 && <2.0 , hledger-lib >=1.9.99 && <2.0
, hledger-web , hledger-web
, http-client , http-client
, http-conduit , http-conduit
@ -247,7 +247,7 @@ 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="1.9" cpp-options: -DVERSION="1.9.99"
build-depends: build-depends:
HUnit HUnit
, base >=4.8 && <4.12 , base >=4.8 && <4.12
@ -262,8 +262,8 @@ test-suite test
, directory , directory
, filepath , filepath
, hjsmin , hjsmin
, hledger >=1.9 && <2.0 , hledger >=1.9.99 && <2.0
, hledger-lib >=1.9 && <2.0 , hledger-lib >=1.9.99 && <2.0
, hledger-web , hledger-web
, hspec , hspec
, http-client , http-client

View File

@ -1,5 +1,5 @@
name: hledger-web name: hledger-web
version: '1.9' version: '1.9.99'
synopsis: Web interface for the hledger accounting tool synopsis: Web interface for the hledger accounting tool
description: | description: |
This is hledger's web interface. This is hledger's web interface.
@ -62,8 +62,8 @@ flags:
default: true default: true
dependencies: dependencies:
- hledger-lib >=1.9 && <2.0 - hledger-lib >=1.9.99 && <2.0
- hledger >=1.9 && <2.0 - hledger >=1.9.99 && <2.0
- base >=4.8 && <4.12 - base >=4.8 && <4.12
- base-compat >=0.8.1 - base-compat >=0.8.1
- blaze-html - blaze-html
@ -114,7 +114,7 @@ ghc-options:
- -fno-warn-orphans - -fno-warn-orphans
library: library:
cpp-options: -DVERSION="1.9" cpp-options: -DVERSION="1.9.99"
exposed-modules: exposed-modules:
- Application - Application
- Foundation - Foundation
@ -137,7 +137,7 @@ executables:
hledger-web: hledger-web:
source-dirs: app source-dirs: app
main: main.hs main: main.hs
cpp-options: -DVERSION="1.9" cpp-options: -DVERSION="1.9.99"
dependencies: dependencies:
- hledger-web - hledger-web
when: when:
@ -150,7 +150,7 @@ tests:
test: test:
source-dirs: tests source-dirs: tests
main: main.hs main: main.hs
cpp-options: -DVERSION="1.9" cpp-options: -DVERSION="1.9.99"
dependencies: dependencies:
- hledger-web - hledger-web
- hspec - hspec

View File

@ -2,10 +2,10 @@
-- --
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
-- --
-- hash: 99eb38f5627e64b90fe33622dba3444cfb4f1d57f69c12b19731fb061f2b896a -- hash: 7ee6d38544539ea9fb0fc3cb73cb09756e9f3d951baf5d0b4308b7915d644c2c
name: hledger name: hledger
version: 1.9 version: 1.9.99
synopsis: Command-line interface for the hledger accounting tool synopsis: Command-line interface for the hledger accounting tool
description: This is hledger's command-line interface. description: This is hledger's command-line interface.
Its basic function is to read a plain text file describing Its basic function is to read a plain text file describing
@ -78,7 +78,7 @@ flag threaded
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 -optP-Wno-nonportable-include-path ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans -optP-Wno-nonportable-include-path
cpp-options: -DVERSION="1.9" cpp-options: -DVERSION="1.9.99"
build-depends: build-depends:
Decimal Decimal
, Diff , Diff
@ -97,7 +97,7 @@ library
, hashable >=1.2.4 , hashable >=1.2.4
, haskeline >=0.6 , haskeline >=0.6
, here , here
, hledger-lib >=1.9 && <2.0 , hledger-lib >=1.9.99 && <2.0
, lucid , lucid
, megaparsec >=5.0 , megaparsec >=5.0
, mtl , mtl
@ -161,7 +161,7 @@ executable hledger
hs-source-dirs: hs-source-dirs:
app app
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans -optP-Wno-nonportable-include-path ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans -optP-Wno-nonportable-include-path
cpp-options: -DVERSION="1.9" cpp-options: -DVERSION="1.9.99"
build-depends: build-depends:
Decimal Decimal
, HUnit , HUnit
@ -179,7 +179,7 @@ executable hledger
, haskeline >=0.6 , haskeline >=0.6
, here , here
, hledger , hledger
, hledger-lib >=1.9 && <2.0 , hledger-lib >=1.9.99 && <2.0
, mtl , mtl
, mtl-compat , mtl-compat
, old-time , old-time
@ -213,7 +213,7 @@ 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 -optP-Wno-nonportable-include-path ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans -optP-Wno-nonportable-include-path
cpp-options: -DVERSION="1.9" cpp-options: -DVERSION="1.9.99"
build-depends: build-depends:
Decimal Decimal
, HUnit , HUnit
@ -231,7 +231,7 @@ test-suite test
, haskeline >=0.6 , haskeline >=0.6
, here , here
, hledger , hledger
, hledger-lib >=1.9 && <2.0 , hledger-lib >=1.9.99 && <2.0
, mtl , mtl
, mtl-compat , mtl-compat
, old-time , old-time
@ -275,7 +275,7 @@ benchmark bench
, filepath , filepath
, here , here
, hledger , hledger
, hledger-lib >=1.9 && <2.0 , hledger-lib >=1.9.99 && <2.0
, html , html
, pretty-show >=1.6.4 , pretty-show >=1.6.4
, process , process

View File

@ -1,5 +1,5 @@
name: hledger name: hledger
version: '1.9' version: '1.9.99'
synopsis: Command-line interface for the hledger accounting tool synopsis: Command-line interface for the hledger accounting tool
description: | description: |
This is hledger's command-line interface. This is hledger's command-line interface.
@ -92,7 +92,7 @@ dependencies:
- tabular >=0.2 - tabular >=0.2
- time >=1.5 - time >=1.5
- utility-ht >=0.0.13 - utility-ht >=0.0.13
- hledger-lib >=1.9 && <2.0 - hledger-lib >=1.9.99 && <2.0
when: when:
- condition: (!(os(windows))) && (flag(terminfo)) - condition: (!(os(windows))) && (flag(terminfo))
@ -100,7 +100,7 @@ when:
- terminfo - terminfo
library: library:
cpp-options: -DVERSION="1.9" cpp-options: -DVERSION="1.9.99"
exposed-modules: exposed-modules:
- Hledger.Cli - Hledger.Cli
- Hledger.Cli.Main - Hledger.Cli.Main
@ -161,7 +161,7 @@ executables:
hledger: hledger:
source-dirs: app source-dirs: app
main: hledger-cli.hs main: hledger-cli.hs
cpp-options: -DVERSION="1.9" cpp-options: -DVERSION="1.9.99"
when: when:
- condition: flag(threaded) - condition: flag(threaded)
ghc-options: -threaded ghc-options: -threaded
@ -191,7 +191,7 @@ tests:
test: test:
source-dirs: test source-dirs: test
main: test.hs main: test.hs
cpp-options: -DVERSION="1.9" cpp-options: -DVERSION="1.9.99"
dependencies: dependencies:
- hledger - hledger
- bytestring - bytestring