diff options
author | Martin Michlmayr <tbm@cyrius.com> | 2019-02-05 08:30:45 -0500 |
---|---|---|
committer | Martin Michlmayr <tbm@cyrius.com> | 2019-02-05 08:30:45 -0500 |
commit | 1d1f3a33c0479c23375b0341b788400c049054cf (patch) | |
tree | 574b3de3c2ac955567d143f3aa8bb740606e7448 | |
parent | 0bbb976ee3064ff59b319e30fd97e31020259760 (diff) | |
download | fork-ledger-1d1f3a33c0479c23375b0341b788400c049054cf.tar.gz fork-ledger-1d1f3a33c0479c23375b0341b788400c049054cf.tar.bz2 fork-ledger-1d1f3a33c0479c23375b0341b788400c049054cf.zip |
Release 3.1.2
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | README.md | 19 | ||||
-rw-r--r-- | default.nix | 4 |
3 files changed, 3 insertions, 22 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7ee95b0b..b572aa8b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ set(Ledger_VERSION_MAJOR 3) set(Ledger_VERSION_MINOR 1) set(Ledger_VERSION_PATCH 2) set(Ledger_VERSION_PRERELEASE "") -set(Ledger_VERSION_DATE 20160801) +set(Ledger_VERSION_DATE 20190205) set(Ledger_TEST_TIMEZONE "America/Chicago") @@ -39,25 +39,6 @@ end of this file). An Emacs mode for Ledger files can be found in the [ledger/ledger-mode repository] and a vim plugin is located in the [ledger/vim-ledger repository]. -## To the Rest - -If you're reading this file, you have in your hands the Bleeding Edge. This -may very well *not* be what you want, since it's not guaranteed to be in a -functionally complete state. It's under active development, and may change in -any way at any time. What you may prefer is the **CURRENT** stable release, or -the **BETA** branch. - -Branch | Command --------|-------- -**RELEASE** | `git checkout -b stable v3.1` | -**CURRENT** | `git checkout -b master origin/master` | -**BETA** | `git checkout -b 3.1.1 release/3.1.1` | -**ALPHA** | `git checkout -b next origin/next` | - -There are also several topic branches which contain experimental features, -though none of these are guaranteed to compile. Best to chat with me on -[IRC] or via the [mailing list] before going too much further with those. - ## Dependencies If you wish to proceed in this venture, you'll need a few dependencies. The diff --git a/default.nix b/default.nix index a60e607f..1058397d 100644 --- a/default.nix +++ b/default.nix @@ -2,8 +2,8 @@ , texinfo, gnused }: let - version = "3.1.1"; - rev = "20161114"; + version = "3.1.2"; + rev = "20190105"; in stdenv.mkDerivation { |