Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions c/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
----------------------
[0.99.10] - 2021-01-25
----------------------

Minor bugfix on internal APIs

---------------------
[0.99.9] - 2021-01-22
---------------------
Expand Down
2 changes: 1 addition & 1 deletion c/tskit/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,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 9
#define TSK_VERSION_PATCH 10
/** @} */

/* Node flags */
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 @@ -2619,7 +2619,7 @@ def test_kastore_version(self):

def test_tskit_version(self):
version = _tskit.get_tskit_version()
assert version == (0, 99, 9)
assert version == (0, 99, 10)


def test_uninitialised():
Expand Down