should have released hledger-lib; bump all version numbers again

This commit is contained in:
Simon Michael 2012-11-24 16:01:19 +00:00
parent d22be3ac30
commit 7798744d60
6 changed files with 16 additions and 16 deletions

View File

@ -4,7 +4,7 @@ title: hledger user manual
# User manual
Version: 0.20pre
Version: 0.19.3
## Introduction

View File

@ -4,7 +4,7 @@ title: hledger news
# News
## 2012/11/24 hledger-web 0.19.1, hledger 0.19.2
## 2012/11/24 hledger-web 0.19.3
* web: fix "Prelude.read: no parse" errors with GHC >= 7.6

View File

@ -1 +1 @@
0.19.1
0.19.3

View File

@ -1,5 +1,5 @@
name: hledger-lib
version: 0.19.1
version: 0.19.3
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.19.1
version: 0.19.3
category: Finance
synopsis: A web interface for the hledger accounting tool.
description:
@ -83,7 +83,7 @@ library
-- Buildable: False
ghc-options: -Wall -fno-warn-unused-do-bind
cpp-options: -DVERSION="0.19.1"
cpp-options: -DVERSION="0.19.3"
if flag(dev) || flag(library-only)
cpp-options: -DDEVELOPMENT
@ -124,8 +124,8 @@ library
, warp >= 1.3 && < 1.4
, data-default
, hledger == 0.19.2
, hledger-lib == 0.19.1
, hledger == 0.19.3
, hledger-lib == 0.19.3
, cmdargs >= 0.10 && < 0.11
, directory
, filepath
@ -154,7 +154,7 @@ library
executable hledger-web
cpp-options: -DVERSION="0.19.1"
cpp-options: -DVERSION="0.19.3"
if flag(library-only)
Buildable: False
@ -194,8 +194,8 @@ executable hledger-web
build-depends:
hledger-web
, hledger == 0.19.2
, hledger-lib == 0.19.1
, hledger == 0.19.3
, hledger-lib == 0.19.3
, 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.19.2
version: 0.19.3
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.19.2"
cpp-options: -DVERSION="0.19.3"
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.19.1
hledger-lib == 0.19.3
,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.19.2"
cpp-options: -DVERSION="0.19.3"
ghc-options: -W
if flag(threaded)
ghc-options: -threaded
-- should be the same as above
build-depends:
hledger-lib == 0.19.1
hledger-lib == 0.19.3
,base >= 4.3 && < 5
,containers
,cmdargs >= 0.10 && < 0.11