bump version

This commit is contained in:
Simon Michael 2012-10-21 20:20:35 +00:00
parent 3fe66ab6ec
commit 51a9f2a948
4 changed files with 12 additions and 12 deletions

View File

@ -1 +1 @@
0.18.2
0.19

View File

@ -1,5 +1,5 @@
name: hledger-lib
version: 0.18.2
version: 0.19
category: Finance
synopsis: Core data types, parsers and utilities for the hledger accounting tool.
description:

View File

@ -1,6 +1,6 @@
name: hledger-web
-- also in cpp-options below
version: 0.18.2
version: 0.19
category: Finance
synopsis: A web interface for the hledger accounting tool.
description:
@ -78,7 +78,7 @@ library
Hledger.Web.Handlers
ghc-options: -Wall -O0 -fno-warn-unused-do-bind
cpp-options: -DVERSION="0.18.2" -DDEVELOPMENT
cpp-options: -DVERSION="0.19" -DDEVELOPMENT
extensions: TemplateHaskell
QuasiQuotes
@ -94,7 +94,7 @@ executable hledger-web
Buildable: False
if flag(dev)
cpp-options: -DVERSION="0.18.2" -DDEVELOPMENT
cpp-options: -DVERSION="0.19" -DDEVELOPMENT
ghc-options: -Wall -O0 -fno-warn-unused-do-bind
else
ghc-options: -Wall -O2 -fno-warn-unused-do-bind
@ -124,8 +124,8 @@ executable hledger-web
Hledger.Web.Handlers
build-depends:
hledger == 0.18.2
, hledger-lib == 0.18.2
hledger == 0.19
, hledger-lib == 0.19
, base >= 4.3 && < 5
, cmdargs >= 0.10 && < 0.11
, directory

View File

@ -1,6 +1,6 @@
name: hledger
-- also in cpp-options below
version: 0.18.2
version: 0.19
category: Finance
synopsis: The main command-line interface for the hledger accounting tool.
description:
@ -41,7 +41,7 @@ flag threaded
Default: True
library
cpp-options: -DVERSION="0.18.2"
cpp-options: -DVERSION="0.19"
ghc-options: -W
-- should be the same as below
exposed-modules:
@ -62,7 +62,7 @@ library
Hledger.Cli.Stats
-- should be the same as below
build-depends:
hledger-lib == 0.18.2
hledger-lib == 0.19
,base >= 4.3 && < 5
-- ,cabal-file-th
,containers
@ -110,13 +110,13 @@ executable hledger
Hledger.Cli.Print
Hledger.Cli.Register
Hledger.Cli.Stats
cpp-options: -DVERSION="0.18.2"
cpp-options: -DVERSION="0.19"
ghc-options: -W
if flag(threaded)
ghc-options: -threaded
-- should be the same as above
build-depends:
hledger-lib == 0.18.2
hledger-lib == 0.19
,base >= 4.3 && < 5
,containers
,cmdargs >= 0.10 && < 0.11