mirror of
https://github.com/simonmichael/hledger.git
synced 2024-12-28 21:02:04 +03:00
bump version
This commit is contained in:
parent
ec47ba4bf4
commit
4fb325b92a
@ -31,7 +31,7 @@ hledger is copyright (c) 2007-2011
|
|||||||
[Simon Michael <simon@joyful.com>](mailto:simon@joyful.com) and
|
[Simon Michael <simon@joyful.com>](mailto:simon@joyful.com) and
|
||||||
contributors, and released as Free Software under GPL version 3 or later.
|
contributors, and released as Free Software under GPL version 3 or later.
|
||||||
|
|
||||||
This is the user manual and reference for hledger version 0.16.
|
This is the user manual and reference for hledger version 0.16.1.
|
||||||
|
|
||||||
## Installing
|
## Installing
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: hledger-chart
|
name: hledger-chart
|
||||||
version: 0.16
|
version: 0.16.1
|
||||||
category: Finance
|
category: Finance
|
||||||
synopsis: A pie chart image generator for the hledger accounting tool.
|
synopsis: A pie chart image generator for the hledger accounting tool.
|
||||||
description:
|
description:
|
||||||
@ -37,8 +37,8 @@ executable hledger-chart
|
|||||||
Hledger.Chart.Main
|
Hledger.Chart.Main
|
||||||
Hledger.Chart.Options
|
Hledger.Chart.Options
|
||||||
build-depends:
|
build-depends:
|
||||||
hledger == 0.16
|
hledger == 0.16.1
|
||||||
,hledger-lib == 0.16
|
,hledger-lib == 0.16.1
|
||||||
,HUnit
|
,HUnit
|
||||||
,base >= 3 && < 5
|
,base >= 3 && < 5
|
||||||
,cmdargs >= 0.8 && < 0.9
|
,cmdargs >= 0.8 && < 0.9
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: hledger-lib
|
name: hledger-lib
|
||||||
version: 0.16
|
version: 0.16.1
|
||||||
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:
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: hledger-vty
|
name: hledger-vty
|
||||||
version: 0.16
|
version: 0.16.1
|
||||||
category: Finance
|
category: Finance
|
||||||
synopsis: A curses-style console interface for the hledger accounting tool.
|
synopsis: A curses-style console interface for the hledger accounting tool.
|
||||||
description:
|
description:
|
||||||
@ -37,8 +37,8 @@ executable hledger-vty
|
|||||||
Hledger.Vty.Main
|
Hledger.Vty.Main
|
||||||
Hledger.Vty.Options
|
Hledger.Vty.Options
|
||||||
build-depends:
|
build-depends:
|
||||||
hledger == 0.16
|
hledger == 0.16.1
|
||||||
,hledger-lib == 0.16
|
,hledger-lib == 0.16.1
|
||||||
,HUnit
|
,HUnit
|
||||||
,base >= 3 && < 5
|
,base >= 3 && < 5
|
||||||
,cmdargs >= 0.8 && < 0.9
|
,cmdargs >= 0.8 && < 0.9
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: hledger-web
|
name: hledger-web
|
||||||
version: 0.16
|
version: 0.16.1
|
||||||
category: Finance
|
category: Finance
|
||||||
synopsis: A web interface for the hledger accounting tool.
|
synopsis: A web interface for the hledger accounting tool.
|
||||||
description:
|
description:
|
||||||
@ -55,8 +55,8 @@ executable hledger-web
|
|||||||
Hledger.Web.Settings.StaticFiles
|
Hledger.Web.Settings.StaticFiles
|
||||||
Hledger.Web.Handlers
|
Hledger.Web.Handlers
|
||||||
build-depends:
|
build-depends:
|
||||||
hledger == 0.16
|
hledger == 0.16.1
|
||||||
,hledger-lib == 0.16
|
,hledger-lib == 0.16.1
|
||||||
,HUnit
|
,HUnit
|
||||||
,base >= 4 && < 5
|
,base >= 4 && < 5
|
||||||
,bytestring
|
,bytestring
|
||||||
|
@ -20,7 +20,7 @@ import Hledger.Utils
|
|||||||
-- version and PATCHLEVEL are set by the make process
|
-- version and PATCHLEVEL are set by the make process
|
||||||
|
|
||||||
version :: String
|
version :: String
|
||||||
version = "0.16.0"
|
version = "0.16.1"
|
||||||
|
|
||||||
patchlevel :: String
|
patchlevel :: String
|
||||||
#ifdef PATCHLEVEL
|
#ifdef PATCHLEVEL
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: hledger
|
name: hledger
|
||||||
version: 0.16
|
version: 0.16.1
|
||||||
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:
|
||||||
@ -57,7 +57,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.16
|
hledger-lib == 0.16.1
|
||||||
,base >= 3 && < 5
|
,base >= 3 && < 5
|
||||||
,containers
|
,containers
|
||||||
,cmdargs >= 0.8 && < 0.9
|
,cmdargs >= 0.8 && < 0.9
|
||||||
@ -107,7 +107,7 @@ executable hledger
|
|||||||
ghc-options: -threaded -W
|
ghc-options: -threaded -W
|
||||||
-- should be the same as above
|
-- should be the same as above
|
||||||
build-depends:
|
build-depends:
|
||||||
hledger-lib == 0.16
|
hledger-lib == 0.16.1
|
||||||
,base >= 3 && < 5
|
,base >= 3 && < 5
|
||||||
,containers
|
,containers
|
||||||
,cmdargs >= 0.8 && < 0.9
|
,cmdargs >= 0.8 && < 0.9
|
||||||
|
Loading…
Reference in New Issue
Block a user