diff options
author | Martin Michlmayr <tbm@cyrius.com> | 2014-10-05 19:02:43 -0400 |
---|---|---|
committer | Martin Michlmayr <tbm@cyrius.com> | 2014-10-05 19:02:43 -0400 |
commit | 720c03b139d251c53f9deef491f5953e2fdb97ca (patch) | |
tree | 7a4d77a7ed197d6c24829d8e1c6beb879f2e5dbe | |
parent | 841a09b4a5f3d9c9950e06e9edf3daddb8bc3e9d (diff) | |
download | fork-ledger-720c03b139d251c53f9deef491f5953e2fdb97ca.tar.gz fork-ledger-720c03b139d251c53f9deef491f5953e2fdb97ca.tar.bz2 fork-ledger-720c03b139d251c53f9deef491f5953e2fdb97ca.zip |
Bump version number to 3.1
-rw-r--r-- | CMakeLists.txt | 6 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | default.nix | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8a5fc850..6592f106 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,9 +3,9 @@ cmake_minimum_required(VERSION 2.8.5) PROJECT(ledger) set(Ledger_VERSION_MAJOR 3) -set(Ledger_VERSION_MINOR 0) -set(Ledger_VERSION_PATCH 3) -set(Ledger_VERSION_DATE 20140608) +set(Ledger_VERSION_MINOR 1) +set(Ledger_VERSION_PATCH 0) +set(Ledger_VERSION_DATE 20141005) enable_testing() @@ -48,7 +48,7 @@ major bugs that you find. Just e-mail me, or post to the mailing list, they'll become a part of my work list. <table> -<tr><td><strong>RELEASE</strong></td><td><tt>git checkout v3.0.3</tt></td></tr> +<tr><td><strong>RELEASE</strong></td><td><tt>git checkout v3.1</tt></td></tr> <tr><td><strong>CURRENT</strong></td><td><tt>git checkout maint</tt></td></tr> <tr><td><strong>BETA</strong></td><td><tt>git checkout -b master origin/master</tt></td></tr> <tr><td><strong>ALPHA</strong></td><td><tt>git checkout -b next origin/next</tt></td></tr> diff --git a/default.nix b/default.nix index 1b0bd1dc..d54621d1 100644 --- a/default.nix +++ b/default.nix @@ -2,11 +2,11 @@ , texinfo, gnused }: let - rev = "20140507"; + rev = "20141005"; in stdenv.mkDerivation { - name = "ledger-3.0.3.${rev}"; + name = "ledger-3.1.0.${rev}"; src = ./.; |