Skip to content

Commit 44f3aea

Browse files
authored
Merge pull request #1133 from benjeffery/C_0.99.10-release-prep
C_0.99.10 release prep
2 parents 5b96371 + f6b5d34 commit 44f3aea

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

c/CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
----------------------
2+
[0.99.10] - 2021-01-25
3+
----------------------
4+
5+
Minor bugfix on internal APIs
6+
17
---------------------
28
[0.99.9] - 2021-01-22
39
---------------------

c/tskit/core.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ to the API or ABI are introduced, i.e., the addition of a new function.
129129
The library patch version. Incremented when any changes not relevant to the
130130
to the API or ABI are introduced, i.e., internal refactors of bugfixes.
131131
*/
132-
#define TSK_VERSION_PATCH 9
132+
#define TSK_VERSION_PATCH 10
133133
/** @} */
134134

135135
/* Node flags */

python/tests/test_lowlevel.py

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

26202620
def test_tskit_version(self):
26212621
version = _tskit.get_tskit_version()
2622-
assert version == (0, 99, 9)
2622+
assert version == (0, 99, 10)
26232623

26242624

26252625
def test_uninitialised():

0 commit comments

Comments
 (0)