bump version

This commit is contained in:
Simon Michael 2010-12-06 18:37:10 +00:00
parent a0584e0e56
commit 15518da4ac
9 changed files with 22 additions and 22 deletions

View File

@ -26,14 +26,14 @@ Errata: these binaries lack support files for the web interface, you must copy
<table id="platformdocs"> <table id="platformdocs">
<tr> <tr>
<th><img src="../linux.png" /><br />GNU/Linux (x86)</th> <th><img src="../linux.png" /><br />GNU/Linux (x86)</th>
<th><a href="download/hledger-0.12.1-mac-i386.gz"><img src="../mac.png" border=0 /></a><br />Mac</th> <th><a href="download/hledger-0.13-mac-i386.gz"><img src="../mac.png" border=0 /></a><br />Mac</th>
<th><a href="download/hledger-0.12.1-win-i386.gz"><img src="../windows.png" border=0 /></a><br />Windows</th> <th><a href="download/hledger-0.13-win-i386.gz"><img src="../windows.png" border=0 /></a><br />Windows</th>
</tr> </tr>
<tr> <tr>
<td> <td>
Download the Download the
**[32-bit](download/hledger-0.12.1-linux-i386.gz)** or **[32-bit](download/hledger-0.13-linux-i386.gz)** or
**[64-bit](download/hledger-0.12.1-linux-x86_64.gz)** version **[64-bit](download/hledger-0.13-linux-x86_64.gz)** version
Open a terminal window and go to your browser's download directory, then: Open a terminal window and go to your browser's download directory, then:
`$ gunzip hledger-*86*` `$ gunzip hledger-*86*`
@ -44,7 +44,7 @@ Open a terminal window and go to your browser's download directory, then:
<td> <td>
Download Download
<span style="white-space:nowrap;"> <span style="white-space:nowrap;">
**[hledger-0.12.1-mac-i386.gz](download/hledger-0.12.1-mac-i386.gz)** **[hledger-0.13-mac-i386.gz](download/hledger-0.13-mac-i386.gz)**
</span> </span>
Double-click the downloaded file to decompress it. Double-click the downloaded file to decompress it.
@ -57,7 +57,7 @@ Run it:
<td> <td>
Download Download
<span style="white-space:nowrap;"> <span style="white-space:nowrap;">
**[hledger-0.12.1-windows-i386.exe.zip](download/hledger-0.12.1-windows-i386.exe.zip)** **[hledger-0.13-windows-i386.exe.zip](download/hledger-0.13-windows-i386.exe.zip)**
</span> </span>
Unzip it to (eg) your desktop. Unzip it to (eg) your desktop.

View File

@ -31,7 +31,7 @@ hledger is copyright (c) 2007-2010
[Simon&nbsp;Michael&nbsp;<simon@joyful.com>](mailto:simon@joyful.com) and [Simon&nbsp;Michael&nbsp;<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 manual for hledger 0.12.98. This is the manual for hledger 0.13.0.
## Installing ## Installing

View File

@ -1 +1 @@
0.12.98 0.13

View File

@ -1,5 +1,5 @@
name: hledger-chart name: hledger-chart
version: 0.12.98 version: 0.13
category: Finance category: Finance
synopsis: A hledger add-on command to generate pie charts. synopsis: A hledger add-on command to generate pie charts.
description: This generates rudimentary pie charts of account balances. description: This generates rudimentary pie charts of account balances.
@ -28,8 +28,8 @@ executable hledger-chart
other-modules: other-modules:
Hledger.Chart Hledger.Chart
build-depends: build-depends:
hledger == 0.12.98 hledger == 0.13
,hledger-lib == 0.12.98 ,hledger-lib == 0.13
-- ,HUnit -- ,HUnit
-- ,base >= 3 && < 5 -- ,base >= 3 && < 5
-- ,containers -- ,containers

View File

@ -1,5 +1,5 @@
name: hledger-lib name: hledger-lib
version: 0.12.98 version: 0.13
category: Finance category: Finance
synopsis: Core types and utilities for working with hledger (or c++ ledger) data. synopsis: Core types and utilities for working with hledger (or c++ ledger) data.
description: description:

View File

@ -1,5 +1,5 @@
name: hledger-vty name: hledger-vty
version: 0.12.98 version: 0.13
category: Finance category: Finance
synopsis: A hledger add-on command providing a curses-style console interface. synopsis: A hledger add-on command providing a curses-style console interface.
description: description:
@ -29,8 +29,8 @@ executable hledger-vty
other-modules: other-modules:
Hledger.Vty Hledger.Vty
build-depends: build-depends:
hledger == 0.12.98 hledger == 0.13
,hledger-lib == 0.12.98 ,hledger-lib == 0.13
-- ,HUnit -- ,HUnit
,base >= 3 && < 5 ,base >= 3 && < 5
-- ,containers -- ,containers

View File

@ -1,5 +1,5 @@
name: hledger-web name: hledger-web
version: 0.12.98 version: 0.13
category: Finance category: Finance
synopsis: A hledger add-on command providing a web interface. synopsis: A hledger add-on command providing a web interface.
description: description:
@ -51,8 +51,8 @@ executable hledger-web
Hledger.Web.App Hledger.Web.App
Hledger.Web.Settings Hledger.Web.Settings
build-depends: build-depends:
hledger == 0.12.98 hledger == 0.13
,hledger-lib == 0.12.98 ,hledger-lib == 0.13
-- ,HUnit -- ,HUnit
,base >= 3 && < 5 ,base >= 3 && < 5
-- ,containers -- ,containers

View File

@ -10,7 +10,7 @@ import System.Info (os, arch)
import Hledger.Data.Utils import Hledger.Data.Utils
-- version and PATCHLEVEL are set by the makefile -- version and PATCHLEVEL are set by the makefile
version = "0.12.98" version = "0.13.0"
#ifdef PATCHLEVEL #ifdef PATCHLEVEL
patchlevel = "." ++ show PATCHLEVEL -- must be numeric ! patchlevel = "." ++ show PATCHLEVEL -- must be numeric !

View File

@ -1,5 +1,5 @@
name: hledger name: hledger
version: 0.12.98 version: 0.13
category: Finance category: Finance
synopsis: A command-line double-entry accounting tool. synopsis: A command-line double-entry accounting tool.
description: description:
@ -50,7 +50,7 @@ executable hledger
Hledger.Cli.Commands.Register Hledger.Cli.Commands.Register
Hledger.Cli.Commands.Stats Hledger.Cli.Commands.Stats
build-depends: build-depends:
hledger-lib == 0.12.98 hledger-lib == 0.13
,HUnit ,HUnit
,base >= 3 && < 5 ,base >= 3 && < 5
,containers ,containers
@ -89,7 +89,7 @@ library
Hledger.Cli.Commands.Register Hledger.Cli.Commands.Register
Hledger.Cli.Commands.Stats Hledger.Cli.Commands.Stats
build-depends: build-depends:
hledger-lib == 0.12.98 hledger-lib == 0.13
,HUnit ,HUnit
,base >= 3 && < 5 ,base >= 3 && < 5
,containers ,containers