bump version to 1.13

This commit is contained in:
Simon Michael 2019-02-01 17:19:19 -08:00
parent c28d5a9634
commit 40d1572359
14 changed files with 53 additions and 53 deletions

View File

@ -1 +1 @@
1.12.99 1.13

View File

@ -119,7 +119,7 @@ main = do
let let
-- documentation versions shown on the website (excluding 0.27 which is handled specially) -- documentation versions shown on the website (excluding 0.27 which is handled specially)
docversions = [ "1.0" , "1.1" , "1.2" , "1.3" , "1.4" , "1.5" , "1.9", "1.10", "1.11", "1.12" ] docversions = [ "1.0" , "1.1" , "1.2" , "1.3" , "1.4" , "1.5" , "1.9", "1.10", "1.11", "1.12", "1.13" ]
-- main package names, in standard build order -- main package names, in standard build order
packages = [ packages = [

View File

@ -7,8 +7,8 @@ m4_define({{_webseparate_}}, m4_ifdef({{WEB && SEPARATE}},{{$1}}) )m4_dnl
m4_define({{_webcombined_}}, m4_ifdef({{WEB && COMBINED}},{{$1}}) )m4_dnl 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_}}, {{January 2019}})m4_dnl m4_define({{_monthyear_}}, {{February 2019}})m4_dnl
m4_define({{_version_}}, {{1.12.99}})m4_dnl m4_define({{_version_}}, {{1.13}})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

@ -4,10 +4,10 @@ cabal-version: 1.12
-- --
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
-- --
-- hash: d5f6287179b90ef98612ff82514942901b1f593256fb022d2ae727dee39eadd6 -- hash: d466c16400216144122ec39c234f0b399daffb1a7eb48236b78b63ba59102275
name: hledger-api name: hledger-api
version: 1.12.99 version: 1.13
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.
@ -46,7 +46,7 @@ executable hledger-api
other-modules: other-modules:
Paths_hledger_api Paths_hledger_api
ghc-options: -threaded ghc-options: -threaded
cpp-options: -DVERSION="1.12.99" cpp-options: -DVERSION="1.13"
build-depends: build-depends:
Decimal Decimal
, aeson , aeson
@ -56,8 +56,8 @@ executable hledger-api
, data-default >=0.5 , data-default >=0.5
, docopt , docopt
, either , either
, hledger >=1.12.99 && <1.13 , hledger >=1.13 && <1.14
, hledger-lib >=1.12.99 && <1.13 , hledger-lib >=1.13 && <1.14
, microlens >=0.4 , microlens >=0.4
, microlens-platform >=0.2.3.1 , microlens-platform >=0.2.3.1
, safe , safe

View File

@ -37,12 +37,12 @@ import Text.Printf
import Hledger.Query import Hledger.Query
import Hledger.Cli hiding (Reader, version) import Hledger.Cli hiding (Reader, version)
hledgerApiVersion="1.12.99" hledgerApiVersion="1.13"
-- 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.12.99 hledger-api 1.13
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.12.99' version: '1.13'
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.12.99 && <1.13 - hledger-lib >=1.13 && <1.14
- hledger >=1.12.99 && <1.13 - hledger >=1.13 && <1.14
- base >=4.8 && <4.13 - base >=4.8 && <4.13
- aeson - aeson
- bytestring - bytestring
@ -58,4 +58,4 @@ executables:
hledger-api: hledger-api:
main: hledger-api.hs main: hledger-api.hs
ghc-options: -threaded ghc-options: -threaded
cpp-options: -DVERSION="1.12.99" cpp-options: -DVERSION="1.13"

View File

@ -4,10 +4,10 @@ cabal-version: 1.12
-- --
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
-- --
-- hash: 83c1fff5c5877da9fe972db3b0b57fb31687fbdb4476b7ee0136e76a64e2f69e -- hash: c17b44c345a89a13650ca3efcba7d7e8311e9312acfd08dff5f2716e70ca29d7
name: hledger-lib name: hledger-lib
version: 1.12.99 version: 1.13
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.12.99' version: '1.13'
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

@ -4,10 +4,10 @@ cabal-version: 1.12
-- --
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
-- --
-- hash: 70e50e38529d67ced531e192d592b6812e9d74aee2b1dc15ebf4bc5d09476210 -- hash: d833450b55016a44ba8764317be0644717747ee8c20a2b191f3700a3cb67e81c
name: hledger-ui name: hledger-ui
version: 1.12.99 version: 1.13
synopsis: Curses-style user interface for the hledger accounting tool synopsis: Curses-style user interface for the hledger accounting tool
description: This is hledger's curses-style interface. description: This is hledger's curses-style interface.
It is simpler and more convenient for browsing data than the command-line interface, It is simpler and more convenient for browsing data than the command-line interface,
@ -64,7 +64,7 @@ executable hledger-ui
hs-source-dirs: 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 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.12.99" cpp-options: -DVERSION="1.13"
build-depends: build-depends:
ansi-terminal >=0.6.2.3 ansi-terminal >=0.6.2.3
, async , async
@ -76,8 +76,8 @@ executable hledger-ui
, directory , directory
, filepath , filepath
, fsnotify >=0.2.1.2 && <0.4 , fsnotify >=0.2.1.2 && <0.4
, hledger >=1.12.99 && <1.13 , hledger >=1.13 && <1.14
, hledger-lib >=1.12.99 && <1.13 , hledger-lib >=1.13 && <1.14
, megaparsec >=7.0.0 && <8 , megaparsec >=7.0.0 && <8
, microlens >=0.4 , microlens >=0.4
, microlens-platform >=0.2.3.1 , microlens-platform >=0.2.3.1

View File

@ -1,5 +1,5 @@
name : hledger-ui name : hledger-ui
version : '1.12.99' version : '1.13'
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.12.99" cpp-options: -DVERSION="1.13"
dependencies: dependencies:
- hledger >=1.12.99 && <1.13 - hledger >=1.13 && <1.14
- hledger-lib >=1.12.99 && <1.13 - hledger-lib >=1.13 && <1.14
- ansi-terminal >=0.6.2.3 - ansi-terminal >=0.6.2.3
- async - async
- base >=4.8 && <4.13 - base >=4.8 && <4.13

View File

@ -4,10 +4,10 @@ cabal-version: 1.12
-- --
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
-- --
-- hash: 2daa17177b7cd919f708bbca4a81a1171bb51f9ba64055c7095c1fe470b7b19c -- hash: b8f9535cea480d164624211cb8b2a0e0cfc7876b3c2c38539c62fe21ef588d14
name: hledger-web name: hledger-web
version: 1.12.99 version: 1.13
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
@ -150,7 +150,7 @@ library
hs-source-dirs: hs-source-dirs:
./. ./.
ghc-options: -Wall -fwarn-tabs ghc-options: -Wall -fwarn-tabs
cpp-options: -DVERSION="1.12.99" cpp-options: -DVERSION="1.13"
build-depends: build-depends:
base >=4.8 && <4.13 base >=4.8 && <4.13
, blaze-html , blaze-html
@ -165,8 +165,8 @@ library
, directory , directory
, filepath , filepath
, hjsmin , hjsmin
, hledger >=1.12.99 && <1.13 , hledger >=1.13 && <1.14
, hledger-lib >=1.12.99 && <1.13 , hledger-lib >=1.13 && <1.14
, http-client , http-client
, http-conduit , http-conduit
, json , json
@ -206,7 +206,7 @@ executable hledger-web
hs-source-dirs: hs-source-dirs:
app app
ghc-options: -Wall -fwarn-tabs ghc-options: -Wall -fwarn-tabs
cpp-options: -DVERSION="1.12.99" cpp-options: -DVERSION="1.13"
build-depends: build-depends:
base base
, hledger-web , hledger-web

View File

@ -1,5 +1,5 @@
name: hledger-web name: hledger-web
version: '1.12.99' version: '1.13'
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.
@ -79,7 +79,7 @@ when:
library: library:
source-dirs: . source-dirs: .
cpp-options: -DVERSION="1.12.99" cpp-options: -DVERSION="1.13"
exposed-modules: exposed-modules:
- Hledger.Web - Hledger.Web
- Hledger.Web.Application - Hledger.Web.Application
@ -98,8 +98,8 @@ library:
- Hledger.Web.Widget.AddForm - Hledger.Web.Widget.AddForm
- Hledger.Web.Widget.Common - Hledger.Web.Widget.Common
dependencies: dependencies:
- hledger-lib >=1.12.99 && <1.13 - hledger-lib >=1.13 && <1.14
- hledger >=1.12.99 && <1.13 - hledger >=1.13 && <1.14
- base >=4.8 && <4.13 - base >=4.8 && <4.13
- blaze-html - blaze-html
- blaze-markup - blaze-markup
@ -145,7 +145,7 @@ executables:
hledger-web: hledger-web:
source-dirs: app source-dirs: app
main: main.hs main: main.hs
cpp-options: -DVERSION="1.12.99" cpp-options: -DVERSION="1.13"
dependencies: dependencies:
- base - base
- hledger-web - hledger-web
@ -162,7 +162,7 @@ executables:
# test: # test:
# source-dirs: tests # source-dirs: tests
# main: main.hs # main: main.hs
# cpp-options: -DVERSION="1.12.99" # cpp-options: -DVERSION="1.13"
# dependencies: # dependencies:
# - base # - base
# - hledger-web # - hledger-web

View File

@ -4,10 +4,10 @@ cabal-version: 1.12
-- --
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
-- --
-- hash: 14d0eb516133f56c0d466c15ab014ce4e7d3b63a641b1ad70de250a2930e8784 -- hash: 0f31726cb805b74d59400bb1d7502bb6c6c7f01eb41ac0272c4da6a8d94144b2
name: hledger name: hledger
version: 1.12.99 version: 1.13
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
@ -136,7 +136,7 @@ library
other-modules: other-modules:
Paths_hledger Paths_hledger
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.12.99" cpp-options: -DVERSION="1.13"
build-depends: build-depends:
Decimal Decimal
, Diff , Diff
@ -153,7 +153,7 @@ library
, hashable >=1.2.4 , hashable >=1.2.4
, haskeline >=0.6 , haskeline >=0.6
, here , here
, hledger-lib >=1.12.99 && <1.13 , hledger-lib >=1.13 && <1.14
, lucid , lucid
, math-functions >=0.2.0.0 , math-functions >=0.2.0.0
, megaparsec >=7.0.0 && <8 , megaparsec >=7.0.0 && <8
@ -188,7 +188,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.12.99" cpp-options: -DVERSION="1.13"
build-depends: build-depends:
Decimal Decimal
, ansi-terminal >=0.6.2.3 , ansi-terminal >=0.6.2.3
@ -204,7 +204,7 @@ executable hledger
, haskeline >=0.6 , haskeline >=0.6
, here , here
, hledger , hledger
, hledger-lib >=1.12.99 && <1.13 , hledger-lib >=1.13 && <1.14
, math-functions >=0.2.0.0 , math-functions >=0.2.0.0
, megaparsec >=7.0.0 && <8 , megaparsec >=7.0.0 && <8
, mtl , mtl
@ -241,7 +241,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.12.99" cpp-options: -DVERSION="1.13"
build-depends: build-depends:
Decimal Decimal
, ansi-terminal >=0.6.2.3 , ansi-terminal >=0.6.2.3
@ -257,7 +257,7 @@ test-suite test
, haskeline >=0.6 , haskeline >=0.6
, here , here
, hledger , hledger
, hledger-lib >=1.12.99 && <1.13 , hledger-lib >=1.13 && <1.14
, math-functions >=0.2.0.0 , math-functions >=0.2.0.0
, megaparsec >=7.0.0 && <8 , megaparsec >=7.0.0 && <8
, mtl , mtl
@ -310,7 +310,7 @@ benchmark bench
, haskeline >=0.6 , haskeline >=0.6
, here , here
, hledger , hledger
, hledger-lib >=1.12.99 && <1.13 , hledger-lib >=1.13 && <1.14
, html , html
, math-functions >=0.2.0.0 , math-functions >=0.2.0.0
, megaparsec >=7.0.0 && <8 , megaparsec >=7.0.0 && <8

View File

@ -1,5 +1,5 @@
name: hledger name: hledger
version: '1.12.99' version: '1.13'
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.
@ -103,7 +103,7 @@ ghc-options:
- -optP-Wno-nonportable-include-path - -optP-Wno-nonportable-include-path
dependencies: dependencies:
- hledger-lib >=1.12.99 && <1.13 - hledger-lib >=1.13 && <1.14
- ansi-terminal >=0.6.2.3 - ansi-terminal >=0.6.2.3
- base >=4.8 && <4.13 - base >=4.8 && <4.13
- base-compat-batteries >=0.10.1 && <0.11 - base-compat-batteries >=0.10.1 && <0.11
@ -145,7 +145,7 @@ when:
- terminfo - terminfo
library: library:
cpp-options: -DVERSION="1.12.99" cpp-options: -DVERSION="1.13"
exposed-modules: exposed-modules:
- Hledger.Cli - Hledger.Cli
- Hledger.Cli.Main - Hledger.Cli.Main
@ -187,7 +187,7 @@ executables:
hledger: hledger:
source-dirs: app source-dirs: app
main: hledger-cli.hs main: hledger-cli.hs
cpp-options: -DVERSION="1.12.99" cpp-options: -DVERSION="1.13"
when: when:
- condition: flag(threaded) - condition: flag(threaded)
ghc-options: -threaded ghc-options: -threaded
@ -198,7 +198,7 @@ tests:
test: test:
source-dirs: test source-dirs: test
main: test.hs main: test.hs
cpp-options: -DVERSION="1.12.99" cpp-options: -DVERSION="1.13"
dependencies: dependencies:
- hledger - hledger
- test-framework - test-framework