From f6b5d3446577c26f58bf580ea5b7215f70672d7a Mon Sep 17 00:00:00 2001 From: Ben Jeffery Date: Mon, 25 Jan 2021 10:12:24 +0000 Subject: [PATCH] C_0.99.10 release prep --- c/CHANGELOG.rst | 6 ++++++ c/tskit/core.h | 2 +- python/tests/test_lowlevel.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/c/CHANGELOG.rst b/c/CHANGELOG.rst index f8df5e553a..4ac6554bbc 100644 --- a/c/CHANGELOG.rst +++ b/c/CHANGELOG.rst @@ -1,3 +1,9 @@ +---------------------- +[0.99.10] - 2021-01-25 +---------------------- + +Minor bugfix on internal APIs + --------------------- [0.99.9] - 2021-01-22 --------------------- diff --git a/c/tskit/core.h b/c/tskit/core.h index ec45570a6d..59f68ccaf2 100644 --- a/c/tskit/core.h +++ b/c/tskit/core.h @@ -129,7 +129,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 9 +#define TSK_VERSION_PATCH 10 /** @} */ /* Node flags */ diff --git a/python/tests/test_lowlevel.py b/python/tests/test_lowlevel.py index e52b62ecf0..e04bd22764 100644 --- a/python/tests/test_lowlevel.py +++ b/python/tests/test_lowlevel.py @@ -2619,7 +2619,7 @@ def test_kastore_version(self): def test_tskit_version(self): version = _tskit.get_tskit_version() - assert version == (0, 99, 9) + assert version == (0, 99, 10) def test_uninitialised():