From 14ab478d27751abc0960b2f7b159073fe4d04d7d Mon Sep 17 00:00:00 2001 From: Ben Jeffery Date: Wed, 16 Oct 2024 14:15:20 +0100 Subject: [PATCH] Pre-release tasks --- c/CHANGELOG.rst | 6 +++--- c/VERSION.txt | 2 +- c/tskit/core.h | 2 +- python/CHANGELOG.rst | 2 +- python/tests/test_lowlevel.py | 2 +- python/tskit/_version.py | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/c/CHANGELOG.rst b/c/CHANGELOG.rst index 8a13dad1b5..2d286ed575 100644 --- a/c/CHANGELOG.rst +++ b/c/CHANGELOG.rst @@ -1,6 +1,6 @@ --------- -UPCOMING --------- +-------------------- +[1.1.3] - 2024-10-16 +-------------------- **Features** diff --git a/c/VERSION.txt b/c/VERSION.txt index 8428158dc5..9c1218c201 100644 --- a/c/VERSION.txt +++ b/c/VERSION.txt @@ -1 +1 @@ -1.1.2 \ No newline at end of file +1.1.3 \ No newline at end of file diff --git a/c/tskit/core.h b/c/tskit/core.h index 24486c98f4..0b6db1b59e 100644 --- a/c/tskit/core.h +++ b/c/tskit/core.h @@ -152,7 +152,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 2 +#define TSK_VERSION_PATCH 3 /** @} */ /* diff --git a/python/CHANGELOG.rst b/python/CHANGELOG.rst index c56924323f..f0620c954f 100644 --- a/python/CHANGELOG.rst +++ b/python/CHANGELOG.rst @@ -1,5 +1,5 @@ -------------------- -[0.5.9] - 2024-XX-XX +[0.6.0] - 2024-10-16 -------------------- **Breaking Changes** diff --git a/python/tests/test_lowlevel.py b/python/tests/test_lowlevel.py index c07f975f83..a26f9242c4 100644 --- a/python/tests/test_lowlevel.py +++ b/python/tests/test_lowlevel.py @@ -4402,7 +4402,7 @@ def test_kastore_version(self): def test_tskit_version(self): version = _tskit.get_tskit_version() - assert version == (1, 1, 2) + assert version == (1, 1, 3) def test_tskit_version_file(self): maj, min_, patch = _tskit.get_tskit_version() diff --git a/python/tskit/_version.py b/python/tskit/_version.py index eea1001a59..43b7f59a3f 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.5.9.dev0" +tskit_version = "0.6.0"