Skip to content

Commit

Permalink
Pre-release tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
benjeffery committed Oct 16, 2024
1 parent 26952f2 commit b48f587
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions c/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--------
UPCOMING
--------
--------------------
[1.1.3] - 2024-10-16
--------------------

**Features**

Expand Down
2 changes: 1 addition & 1 deletion c/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.2
1.1.3
2 changes: 1 addition & 1 deletion c/tskit/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
/** @} */

/*
Expand Down
2 changes: 1 addition & 1 deletion python/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--------------------
[0.5.9] - 2024-XX-XX
[0.6.0] - 2024-10-16
--------------------

**Breaking Changes**
Expand Down
2 changes: 1 addition & 1 deletion python/tests/test_lowlevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion python/tskit/_version.py
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit b48f587

Please sign in to comment.