From 00f5a212ed8f585d025c0145976b9ff125f4a15f Mon Sep 17 00:00:00 2001 From: Ben Jeffery Date: Fri, 3 Sep 2021 11:23:24 +0100 Subject: [PATCH] Release prep --- c/CHANGELOG.rst | 2 +- c/tskit/core.h | 2 +- python/tests/test_lowlevel.py | 2 +- python/tskit/_version.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/c/CHANGELOG.rst b/c/CHANGELOG.rst index d24a8b3741..02c85a2f1d 100644 --- a/c/CHANGELOG.rst +++ b/c/CHANGELOG.rst @@ -1,5 +1,5 @@ ---------------------- -[0.99.14] - 2021-0X-XX +[0.99.14] - 2021-09-03 ---------------------- **Breaking changes** diff --git a/c/tskit/core.h b/c/tskit/core.h index c7e443972f..4fd226a65c 100644 --- a/c/tskit/core.h +++ b/c/tskit/core.h @@ -182,7 +182,7 @@ to the API or ABI are introduced, i.e., the addition of a new function. The library patch version. Incremented when any changes not relevant to the to the API or ABI are introduced, i.e., internal refactors of bugfixes. */ -#define TSK_VERSION_PATCH 13 +#define TSK_VERSION_PATCH 14 /** @} */ /* Node flags */ diff --git a/python/tests/test_lowlevel.py b/python/tests/test_lowlevel.py index 726e55f2b1..827a420780 100644 --- a/python/tests/test_lowlevel.py +++ b/python/tests/test_lowlevel.py @@ -3017,7 +3017,7 @@ def test_kastore_version(self): def test_tskit_version(self): version = _tskit.get_tskit_version() - assert version == (0, 99, 13) + assert version == (0, 99, 14) def test_uninitialised(): diff --git a/python/tskit/_version.py b/python/tskit/_version.py index f321a86e48..a415f37e8d 100644 --- a/python/tskit/_version.py +++ b/python/tskit/_version.py @@ -1,4 +1,4 @@ # Definitive location for the version number. # During development, should be x.y.z.devN # For beta should be x.y.zbN -tskit_version = "0.3.7" +tskit_version = "0.3.8.dev1"