bump version to 0.20.98 (0.21 alpha)

This commit is contained in:
Simon Michael 2013-05-14 10:30:46 -07:00
parent 50f97b6536
commit 4ff2635bf8
6 changed files with 145 additions and 143 deletions

View File

@ -4,7 +4,7 @@ title: hledger user manual
# User manual # User manual
For: hledger 0.20 For: hledger 0.21 alpha
## Introduction ## Introduction

View File

@ -4,6 +4,8 @@ title: hledger news
# News # News
<!-- ## unreleased -->
## 2013/5/4 hledger 0.20.0.1 ## 2013/5/4 hledger 0.20.0.1
* web: require at least version 1.1.7 of yesod-core to avoid a potential build error * web: require at least version 1.1.7 of yesod-core to avoid a potential build error

View File

@ -1 +1 @@
0.20.0.1 0.20.98

View File

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

View File

@ -1,6 +1,6 @@
name: hledger-web name: hledger-web
-- also in cpp-options below -- also in cpp-options below
version: 0.20.0.1 version: 0.20.98
category: Finance category: Finance
synopsis: A web interface for the hledger accounting tool. synopsis: A web interface for the hledger accounting tool.
description: description:
@ -99,7 +99,7 @@ library
-- Buildable: False -- Buildable: False
ghc-options: -Wall -fno-warn-unused-do-bind ghc-options: -Wall -fno-warn-unused-do-bind
cpp-options: -DVERSION="0.20.0.1" cpp-options: -DVERSION="0.20.98"
if flag(dev) || flag(library-only) if flag(dev) || flag(library-only)
cpp-options: -DDEVELOPMENT cpp-options: -DDEVELOPMENT
@ -118,31 +118,31 @@ library
RecordWildCards RecordWildCards
build-depends: base >= 4 && < 5 build-depends: base >= 4 && < 5
-- , yesod-platform >= 1.1 && < 1.2 , yesod-platform >= 1.2 && < 1.3
, yesod >= 1.1.3 && < 1.2 -- , yesod >= 1.1.3 && < 1.2
, yesod-core >= 1.1.7 && < 1.2 -- , yesod-core >= 1.1.7 && < 1.2
, yesod-static >= 1.1 && < 1.2 -- , yesod-static >= 1.1 && < 1.2
, yesod-default >= 1.1 && < 1.2 -- , yesod-default >= 1.1 && < 1.2
, yesod-form >= 1.1 && < 1.3 -- , yesod-form >= 1.1 && < 1.3
, clientsession -- , clientsession
, bytestring >= 0.9 && < 0.11 -- , bytestring >= 0.9 && < 0.11
, text >= 0.11 && < 0.12 -- , text >= 0.11 && < 0.12
, template-haskell -- , template-haskell
, hamlet >= 1.1 && < 1.2 -- , hamlet >= 1.1 && < 1.2
, shakespeare-css >= 1.0 && < 1.1 -- , shakespeare-css >= 1.0 && < 1.1
, shakespeare-js >= 1.0 && < 1.2 -- , shakespeare-js >= 1.0 && < 1.2
, shakespeare-text >= 1.0 && < 1.1 -- , shakespeare-text >= 1.0 && < 1.1
, hjsmin >= 0.1 && < 0.2 -- , hjsmin >= 0.1 && < 0.2
, monad-control >= 0.3 && < 0.4 -- , monad-control >= 0.3 && < 0.4
, wai-extra >= 1.3 && < 1.4 -- , wai-extra >= 1.3 && < 1.4
, yaml >= 0.8 && < 0.9 -- , yaml >= 0.8 && < 0.9
, http-conduit >= 1.8 && < 1.10 -- , http-conduit >= 1.8 && < 1.10
, directory >= 1.1 && < 1.3 -- , directory >= 1.1 && < 1.3
, warp >= 1.3 && < 1.4 -- , warp >= 1.3 && < 1.4
, data-default -- , data-default
, hledger == 0.20.0.1 , hledger == 0.20.98
, hledger-lib == 0.20.0.1 , hledger-lib == 0.20.98
, cmdargs >= 0.10 && < 0.11 , cmdargs >= 0.10 && < 0.11
, directory , directory
, filepath , filepath
@ -160,118 +160,118 @@ library
, warp , warp
, yaml , yaml
if flag(blaze_html_0_4) -- if flag(blaze_html_0_4)
cpp-options: -DBLAZE_HTML_0_4 -- cpp-options: -DBLAZE_HTML_0_4
build-depends: -- build-depends:
blaze-html >= 0.4 && < 0.5 -- blaze-html >= 0.4 && < 0.5
else -- else
build-depends: build-depends:
blaze-html >= 0.5 && < 0.7 blaze-html >= 0.5 && < 0.7
, blaze-markup >= 0.5.1 && < 0.7 , blaze-markup >= 0.5.1 && < 0.7
executable hledger-web -- executable hledger-web
cpp-options: -DVERSION="0.20.0.1" -- cpp-options: -DVERSION="0.20.98"
if flag(library-only) -- if flag(library-only)
Buildable: False -- Buildable: False
if flag(dev) -- if flag(dev)
cpp-options: -DDEVELOPMENT -- cpp-options: -DDEVELOPMENT
ghc-options: -O0 -Wall -fno-warn-unused-do-bind -- ghc-options: -O0 -Wall -fno-warn-unused-do-bind
else -- else
ghc-options: -O2 -Wall -fno-warn-unused-do-bind -- ghc-options: -O2 -Wall -fno-warn-unused-do-bind
if flag(threaded) -- if flag(threaded)
ghc-options: -threaded -- ghc-options: -threaded
extensions: TemplateHaskell -- extensions: TemplateHaskell
QuasiQuotes -- QuasiQuotes
OverloadedStrings -- OverloadedStrings
NoImplicitPrelude -- NoImplicitPrelude
CPP -- CPP
OverloadedStrings -- OverloadedStrings
MultiParamTypeClasses -- MultiParamTypeClasses
TypeFamilies -- TypeFamilies
RecordWildCards -- RecordWildCards
hs-source-dirs: . app -- hs-source-dirs: . app
main-is: main.hs -- main-is: main.hs
other-modules: -- other-modules:
Application -- Application
Foundation -- Foundation
Import -- Import
Settings -- Settings
Settings.StaticFiles -- Settings.StaticFiles
Settings.Development -- Settings.Development
Handler.Common -- Handler.Common
Handler.JournalEditR -- Handler.JournalEditR
Handler.JournalEntriesR -- Handler.JournalEntriesR
Handler.JournalR -- Handler.JournalR
Handler.Post -- Handler.Post
Handler.RegisterR -- Handler.RegisterR
Handler.RootR -- Handler.RootR
Handler.Utils -- Handler.Utils
Hledger.Web -- Hledger.Web
Hledger.Web.Main -- Hledger.Web.Main
Hledger.Web.Options -- Hledger.Web.Options
build-depends: -- build-depends:
hledger-web -- hledger-web
, hledger == 0.20.0.1 -- , hledger == 0.20.0.1
, hledger-lib == 0.20.0.1 -- , hledger-lib == 0.20.0.1
, base >= 4.3 && < 5 -- , base >= 4.3 && < 5
, cmdargs >= 0.10 && < 0.11 -- , cmdargs >= 0.10 && < 0.11
, directory -- , directory
, filepath -- , filepath
, HUnit -- , HUnit
, old-locale -- , old-locale
, parsec -- , parsec
, regexpr >= 0.5.1 -- , regexpr >= 0.5.1
, safe >= 0.2 -- , safe >= 0.2
, time -- , time
-- , yesod-platform == 1.1.* -- -- , yesod-platform == 1.1.*
, yesod >= 1.1.3 && < 1.2 -- , yesod >= 1.1.3 && < 1.2
, yesod-core >= 1.1.7 && < 1.2 -- , yesod-core >= 1.1.7 && < 1.2
, yesod-default -- , yesod-default
, yesod-static -- , yesod-static
, clientsession -- , clientsession
, hamlet -- , hamlet
, network-conduit -- , network-conduit
, shakespeare-text -- , shakespeare-text
, template-haskell -- , template-haskell
, text -- , text
, transformers -- , transformers
, wai -- , wai
, wai-extra -- , wai-extra
, wai-handler-launch >= 1.3 && < 1.4 -- , wai-handler-launch >= 1.3 && < 1.4
, warp -- , warp
, yaml -- , yaml
, hjsmin >= 0.1 && < 0.2 -- , hjsmin >= 0.1 && < 0.2
, http-conduit >= 1.8 && < 1.10 -- , http-conduit >= 1.8 && < 1.10
, data-default -- , data-default
if flag(blaze_html_0_4) -- if flag(blaze_html_0_4)
cpp-options: -DBLAZE_HTML_0_4 -- cpp-options: -DBLAZE_HTML_0_4
build-depends: -- build-depends:
blaze-html >= 0.4 && < 0.5 -- blaze-html >= 0.4 && < 0.5
else -- else
build-depends: -- build-depends:
blaze-html >= 0.5 && < 0.7 -- blaze-html >= 0.5 && < 0.7
, blaze-markup >= 0.5.1 && < 0.7 -- , blaze-markup >= 0.5.1 && < 0.7
test-suite test -- test-suite test
type: exitcode-stdio-1.0 -- type: exitcode-stdio-1.0
main-is: main.hs -- main-is: main.hs
hs-source-dirs: tests -- hs-source-dirs: tests
ghc-options: -Wall -- ghc-options: -Wall
build-depends: -- build-depends:
base -- base
, hledger-web -- , hledger-web
, yesod-test >= 0.3 && < 0.4 -- , yesod-test >= 0.3 && < 0.4
, yesod-default -- , yesod-default
, yesod-core >= 1.1.7 && < 1.2 -- , yesod-core >= 1.1.7 && < 1.2

View File

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