Skip to content

Commit 0c88cce

Browse files
authored
Merge pull request #3031 from benjeffery/pre-0.6.0
Pre-release tasks
2 parents edf6a3c + ad39ce4 commit 0c88cce

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

c/CHANGELOG.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
--------
2-
UPCOMING
3-
--------
1+
--------------------
2+
[1.1.3] - 2024-10-16
3+
--------------------
44

55
**Features**
66

c/VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.2
1+
1.1.3

c/tskit/core.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ to the API or ABI are introduced, i.e., the addition of a new function.
152152
The library patch version. Incremented when any changes not relevant to the
153153
to the API or ABI are introduced, i.e., internal refactors of bugfixes.
154154
*/
155-
#define TSK_VERSION_PATCH 2
155+
#define TSK_VERSION_PATCH 3
156156
/** @} */
157157

158158
/*

python/CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--------------------
2-
[0.5.9] - 2024-XX-XX
2+
[0.6.0] - 2024-10-16
33
--------------------
44

55
**Breaking Changes**

python/tests/test_lowlevel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4402,7 +4402,7 @@ def test_kastore_version(self):
44024402

44034403
def test_tskit_version(self):
44044404
version = _tskit.get_tskit_version()
4405-
assert version == (1, 1, 2)
4405+
assert version == (1, 1, 3)
44064406

44074407
def test_tskit_version_file(self):
44084408
maj, min_, patch = _tskit.get_tskit_version()

python/tskit/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Definitive location for the version number.
22
# During development, should be x.y.z.devN
33
# For beta should be x.y.zbN
4-
tskit_version = "0.5.9.dev0"
4+
tskit_version = "0.6.0"

0 commit comments

Comments
 (0)