Skip to content

Commit fd72573

Browse files
authored
Merge pull request #2756 from benjeffery/0.5.5prep
0.5.5 Release prep
2 parents 332d5b7 + 4bef5c1 commit fd72573

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

c/CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--------------------
2-
[1.1.2] - 2023-XX-XX
2+
[1.1.2] - 2023-05-17
33
--------------------
44

55
**Performance improvements**

c/VERSION.txt

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

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 1
155+
#define TSK_VERSION_PATCH 2
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.5] - 2023-01-XX
2+
[0.5.5] - 2023-05-17
33
--------------------
44

55
**Performance improvements**

python/tests/test_lowlevel.py

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

38743874
def test_tskit_version(self):
38753875
version = _tskit.get_tskit_version()
3876-
assert version == (1, 1, 1)
3876+
assert version == (1, 1, 2)
38773877

38783878
def test_tskit_version_file(self):
38793879
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.5.dev0"
4+
tskit_version = "0.5.5"

0 commit comments

Comments
 (0)