bump version to 1.10
This commit is contained in:
parent
d1c2165ed9
commit
6242b1d784
@ -7,7 +7,7 @@ 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_}}, {{March 2018}})m4_dnl
|
m4_define({{_monthyear_}}, {{June 2018}})m4_dnl
|
||||||
m4_define({{_version_}}, {{1.9.99}})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.
|
||||||
|
|||||||
@ -2,10 +2,10 @@
|
|||||||
--
|
--
|
||||||
-- see: https://github.com/sol/hpack
|
-- see: https://github.com/sol/hpack
|
||||||
--
|
--
|
||||||
-- hash: 6e88fc6dc1563f77fa7cb770026fb5039e3293499797c2af985830545fce17f2
|
-- hash: 2acd31f63b652f44450cca4ab0448c41091d934449a7c47e1423c6526dd36e72
|
||||||
|
|
||||||
name: hledger-api
|
name: hledger-api
|
||||||
version: 1.9.99
|
version: 1.10
|
||||||
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.
|
||||||
@ -45,7 +45,7 @@ executable hledger-api
|
|||||||
other-modules:
|
other-modules:
|
||||||
Paths_hledger_api
|
Paths_hledger_api
|
||||||
ghc-options: -threaded
|
ghc-options: -threaded
|
||||||
cpp-options: -DVERSION="1.9.99"
|
cpp-options: -DVERSION="1.10"
|
||||||
build-depends:
|
build-depends:
|
||||||
Decimal
|
Decimal
|
||||||
, aeson
|
, aeson
|
||||||
@ -55,8 +55,8 @@ executable hledger-api
|
|||||||
, data-default >=0.5
|
, data-default >=0.5
|
||||||
, docopt
|
, docopt
|
||||||
, either
|
, either
|
||||||
, hledger >=1.9.99 && <2.0
|
, hledger >=1.10 && <1.11
|
||||||
, hledger-lib >=1.9.99 && <2.0
|
, hledger-lib >=1.10 && <1.11
|
||||||
, microlens >=0.4
|
, microlens >=0.4
|
||||||
, microlens-platform >=0.2.3.1
|
, microlens-platform >=0.2.3.1
|
||||||
, safe
|
, safe
|
||||||
|
|||||||
@ -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.9.99"
|
hledgerApiVersion="1.10"
|
||||||
|
|
||||||
-- 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.99
|
hledger-api 1.10
|
||||||
|
|
||||||
Serves hledger data and reports as a JSON web API.
|
Serves hledger data and reports as a JSON web API.
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
name: hledger-api
|
name: hledger-api
|
||||||
version: '1.9.99'
|
version: '1.10'
|
||||||
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.99 && <2.0
|
- hledger-lib >=1.10 && <1.11
|
||||||
- hledger >=1.9.99 && <2.0
|
- hledger >=1.10 && <1.11
|
||||||
- base >=4.8 && <4.12
|
- base >=4.8 && <4.12
|
||||||
- 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.9.99"
|
cpp-options: -DVERSION="1.10"
|
||||||
|
|||||||
@ -2,10 +2,10 @@
|
|||||||
--
|
--
|
||||||
-- see: https://github.com/sol/hpack
|
-- see: https://github.com/sol/hpack
|
||||||
--
|
--
|
||||||
-- hash: b808d840bfd7de5e860adb6ac41ec6bcee061cebcff87b4a1b87d2a46c58b0bf
|
-- hash: 757469e81007e12da21192dc913e3abfe79ca36c62479f7d08abc8726656b4c1
|
||||||
|
|
||||||
name: hledger-lib
|
name: hledger-lib
|
||||||
version: 1.9.99
|
version: 1.10
|
||||||
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.
|
||||||
.
|
.
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
name: hledger-lib
|
name: hledger-lib
|
||||||
version: '1.9.99'
|
version: '1.10'
|
||||||
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.
|
||||||
|
|||||||
@ -2,10 +2,10 @@
|
|||||||
--
|
--
|
||||||
-- see: https://github.com/sol/hpack
|
-- see: https://github.com/sol/hpack
|
||||||
--
|
--
|
||||||
-- hash: 82e8763ca935ff359245f2b359e094fe863143d27e58a2d90b0ddb1e3d7c272e
|
-- hash: 93120fb2299854b48774c4d03660702d22bd43021aa4030f664636b8bc0d0738
|
||||||
|
|
||||||
name: hledger-ui
|
name: hledger-ui
|
||||||
version: 1.9.99
|
version: 1.10
|
||||||
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,
|
||||||
@ -63,7 +63,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.9.99"
|
cpp-options: -DVERSION="1.10"
|
||||||
build-depends:
|
build-depends:
|
||||||
HUnit
|
HUnit
|
||||||
, ansi-terminal >=0.6.2.3
|
, ansi-terminal >=0.6.2.3
|
||||||
@ -76,8 +76,8 @@ executable hledger-ui
|
|||||||
, directory
|
, directory
|
||||||
, filepath
|
, filepath
|
||||||
, fsnotify >=0.3.0.1
|
, fsnotify >=0.3.0.1
|
||||||
, hledger >=1.9.99 && <2.0
|
, hledger >=1.10 && <1.11
|
||||||
, hledger-lib >=1.9.99 && <2.0
|
, hledger-lib >=1.10 && <1.11
|
||||||
, megaparsec >=6.4.1
|
, megaparsec >=6.4.1
|
||||||
, microlens >=0.4
|
, microlens >=0.4
|
||||||
, microlens-platform >=0.2.3.1
|
, microlens-platform >=0.2.3.1
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
name : hledger-ui
|
name : hledger-ui
|
||||||
version : '1.9.99'
|
version : '1.10'
|
||||||
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.99"
|
cpp-options: -DVERSION="1.10"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- hledger >=1.9.99 && <2.0
|
- hledger >=1.10 && <1.11
|
||||||
- hledger-lib >=1.9.99 && <2.0
|
- hledger-lib >=1.10 && <1.11
|
||||||
- ansi-terminal >=0.6.2.3
|
- ansi-terminal >=0.6.2.3
|
||||||
- async
|
- async
|
||||||
- base >=4.8 && <4.12
|
- base >=4.8 && <4.12
|
||||||
|
|||||||
@ -2,10 +2,10 @@
|
|||||||
--
|
--
|
||||||
-- see: https://github.com/sol/hpack
|
-- see: https://github.com/sol/hpack
|
||||||
--
|
--
|
||||||
-- hash: d58757b35977bccf2ea50f50f71519bcc38f63f7d0a9cc7ea2a9cd36fa070267
|
-- hash: 819abf18972b92028b9ccb3e8b1c5404368f8ca74e855c6fa226884dd01995a8
|
||||||
|
|
||||||
name: hledger-web
|
name: hledger-web
|
||||||
version: 1.9.99
|
version: 1.10
|
||||||
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
|
||||||
@ -149,7 +149,7 @@ library
|
|||||||
other-modules:
|
other-modules:
|
||||||
Paths_hledger_web
|
Paths_hledger_web
|
||||||
ghc-options: -Wall -fwarn-tabs
|
ghc-options: -Wall -fwarn-tabs
|
||||||
cpp-options: -DVERSION="1.9.99"
|
cpp-options: -DVERSION="1.10"
|
||||||
build-depends:
|
build-depends:
|
||||||
HUnit
|
HUnit
|
||||||
, base >=4.8 && <4.12
|
, base >=4.8 && <4.12
|
||||||
@ -165,8 +165,8 @@ library
|
|||||||
, directory
|
, directory
|
||||||
, filepath
|
, filepath
|
||||||
, hjsmin
|
, hjsmin
|
||||||
, hledger >=1.9.99 && <2.0
|
, hledger >=1.10 && <1.11
|
||||||
, hledger-lib >=1.9.99 && <2.0
|
, hledger-lib >=1.10 && <1.11
|
||||||
, http-client
|
, http-client
|
||||||
, http-conduit
|
, http-conduit
|
||||||
, json
|
, json
|
||||||
@ -198,7 +198,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.9.99"
|
cpp-options: -DVERSION="1.10"
|
||||||
build-depends:
|
build-depends:
|
||||||
base
|
base
|
||||||
, hledger-web
|
, hledger-web
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
name: hledger-web
|
name: hledger-web
|
||||||
version: '1.9.99'
|
version: '1.10'
|
||||||
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.
|
||||||
@ -77,7 +77,7 @@ when:
|
|||||||
|
|
||||||
library:
|
library:
|
||||||
source-dirs: .
|
source-dirs: .
|
||||||
cpp-options: -DVERSION="1.9.99"
|
cpp-options: -DVERSION="1.10"
|
||||||
exposed-modules:
|
exposed-modules:
|
||||||
- Hledger.Web
|
- Hledger.Web
|
||||||
- Hledger.Web.Application
|
- Hledger.Web.Application
|
||||||
@ -96,8 +96,8 @@ library:
|
|||||||
- Hledger.Web.Widget.AddForm
|
- Hledger.Web.Widget.AddForm
|
||||||
- Hledger.Web.Widget.Common
|
- Hledger.Web.Widget.Common
|
||||||
dependencies:
|
dependencies:
|
||||||
- hledger-lib >=1.9.99 && <2.0
|
- hledger-lib >=1.10 && <1.11
|
||||||
- hledger >=1.9.99 && <2.0
|
- hledger >=1.10 && <1.11
|
||||||
- base >=4.8 && <4.12
|
- base >=4.8 && <4.12
|
||||||
- blaze-html
|
- blaze-html
|
||||||
- blaze-markup
|
- blaze-markup
|
||||||
@ -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.99"
|
cpp-options: -DVERSION="1.10"
|
||||||
dependencies:
|
dependencies:
|
||||||
- base
|
- base
|
||||||
- hledger-web
|
- hledger-web
|
||||||
@ -152,7 +152,7 @@ executables:
|
|||||||
# test:
|
# test:
|
||||||
# source-dirs: tests
|
# source-dirs: tests
|
||||||
# main: main.hs
|
# main: main.hs
|
||||||
# cpp-options: -DVERSION="1.9.99"
|
# cpp-options: -DVERSION="1.10"
|
||||||
# dependencies:
|
# dependencies:
|
||||||
# - base
|
# - base
|
||||||
# - hledger-web
|
# - hledger-web
|
||||||
|
|||||||
@ -2,10 +2,10 @@
|
|||||||
--
|
--
|
||||||
-- see: https://github.com/sol/hpack
|
-- see: https://github.com/sol/hpack
|
||||||
--
|
--
|
||||||
-- hash: 9c5b2134da8c5338d453b421424d33bf6ad43c1c12eca02dcd6711b23d7ae77a
|
-- hash: 9d4dec437459d541e707fa97a836aa8b4878e685d84738bcb462c370387ad83a
|
||||||
|
|
||||||
name: hledger
|
name: hledger
|
||||||
version: 1.9.99
|
version: 1.10
|
||||||
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
|
||||||
@ -109,7 +109,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.9.99"
|
cpp-options: -DVERSION="1.10"
|
||||||
build-depends:
|
build-depends:
|
||||||
Decimal
|
Decimal
|
||||||
, Diff
|
, Diff
|
||||||
@ -128,7 +128,7 @@ library
|
|||||||
, hashable >=1.2.4
|
, hashable >=1.2.4
|
||||||
, haskeline >=0.6
|
, haskeline >=0.6
|
||||||
, here
|
, here
|
||||||
, hledger-lib >=1.9.99 && <2.0
|
, hledger-lib >=1.10 && <1.11
|
||||||
, lucid
|
, lucid
|
||||||
, megaparsec >=6.4.1
|
, megaparsec >=6.4.1
|
||||||
, mtl
|
, mtl
|
||||||
@ -162,7 +162,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.99"
|
cpp-options: -DVERSION="1.10"
|
||||||
build-depends:
|
build-depends:
|
||||||
Decimal
|
Decimal
|
||||||
, HUnit
|
, HUnit
|
||||||
@ -180,7 +180,7 @@ executable hledger
|
|||||||
, haskeline >=0.6
|
, haskeline >=0.6
|
||||||
, here
|
, here
|
||||||
, hledger
|
, hledger
|
||||||
, hledger-lib >=1.9.99 && <2.0
|
, hledger-lib >=1.10 && <1.11
|
||||||
, megaparsec >=6.4.1
|
, megaparsec >=6.4.1
|
||||||
, mtl
|
, mtl
|
||||||
, mtl-compat
|
, mtl-compat
|
||||||
@ -216,7 +216,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.99"
|
cpp-options: -DVERSION="1.10"
|
||||||
build-depends:
|
build-depends:
|
||||||
Decimal
|
Decimal
|
||||||
, HUnit
|
, HUnit
|
||||||
@ -234,7 +234,7 @@ test-suite test
|
|||||||
, haskeline >=0.6
|
, haskeline >=0.6
|
||||||
, here
|
, here
|
||||||
, hledger
|
, hledger
|
||||||
, hledger-lib >=1.9.99 && <2.0
|
, hledger-lib >=1.10 && <1.11
|
||||||
, megaparsec >=6.4.1
|
, megaparsec >=6.4.1
|
||||||
, mtl
|
, mtl
|
||||||
, mtl-compat
|
, mtl-compat
|
||||||
@ -288,7 +288,7 @@ benchmark bench
|
|||||||
, haskeline >=0.6
|
, haskeline >=0.6
|
||||||
, here
|
, here
|
||||||
, hledger
|
, hledger
|
||||||
, hledger-lib >=1.9.99 && <2.0
|
, hledger-lib >=1.10 && <1.11
|
||||||
, html
|
, html
|
||||||
, megaparsec >=6.4.1
|
, megaparsec >=6.4.1
|
||||||
, mtl
|
, mtl
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
name: hledger
|
name: hledger
|
||||||
version: '1.9.99'
|
version: '1.10'
|
||||||
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.
|
||||||
@ -78,7 +78,7 @@ ghc-options:
|
|||||||
- -optP-Wno-nonportable-include-path
|
- -optP-Wno-nonportable-include-path
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- hledger-lib >=1.9.99 && <2.0
|
- hledger-lib >=1.10 && <1.11
|
||||||
- ansi-terminal >=0.6.2.3
|
- ansi-terminal >=0.6.2.3
|
||||||
- base >=4.8 && <4.12
|
- base >=4.8 && <4.12
|
||||||
- base-compat-batteries >=0.10.1 && <0.11
|
- base-compat-batteries >=0.10.1 && <0.11
|
||||||
@ -121,7 +121,7 @@ when:
|
|||||||
- terminfo
|
- terminfo
|
||||||
|
|
||||||
library:
|
library:
|
||||||
cpp-options: -DVERSION="1.9.99"
|
cpp-options: -DVERSION="1.10"
|
||||||
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.99"
|
cpp-options: -DVERSION="1.10"
|
||||||
when:
|
when:
|
||||||
- condition: flag(threaded)
|
- condition: flag(threaded)
|
||||||
ghc-options: -threaded
|
ghc-options: -threaded
|
||||||
@ -172,7 +172,7 @@ tests:
|
|||||||
test:
|
test:
|
||||||
source-dirs: test
|
source-dirs: test
|
||||||
main: test.hs
|
main: test.hs
|
||||||
cpp-options: -DVERSION="1.9.99"
|
cpp-options: -DVERSION="1.10"
|
||||||
dependencies:
|
dependencies:
|
||||||
- hledger
|
- hledger
|
||||||
- test-framework
|
- test-framework
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user