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
13 changes: 12 additions & 1 deletion c/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
--------------------
[1.3.1] - 2026-03-06
--------------------

Maintenance release.

- Update to kastore 2.1.2
- Fix doc typo for file uuid (:pr:`3399`)
- Migrate linting to clang-format 21.1.8 (:pr:`3389`)
- Support compile time setting of debug stream (:pr:`3364`)

--------------------
[1.3.0] - 2025-11-27
--------------------
Expand Down Expand Up @@ -32,7 +43,7 @@

- ``tsk_treeseq_init`` now requires that mutation parents in the table collection
are correct and consistent with the topology of the tree at each mutation site.
Returns ``TSK_ERR_BAD_MUTATION_PARENT`` if this is not the case, or
Returns ``TSK_ERR_BAD_MUTATION_PARENT`` if this is not the case, or
``TSK_ERR_MUTATION_PARENT_AFTER_CHILD`` if the mutations are not in an order
compatible with the correct mutation parent.
(:user:`benjeffery`, :issue:`2729`, :issue:`2732`, :pr:`3212`).
Expand Down
2 changes: 1 addition & 1 deletion c/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.0
1.3.1
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 0
#define TSK_VERSION_PATCH 1
/** @} */

/*
Expand Down
2 changes: 1 addition & 1 deletion python/tests/test_python_c.py
Original file line number Diff line number Diff line change
Expand Up @@ -5077,7 +5077,7 @@ def test_kastore_version(self):

def test_tskit_version(self):
version = _tskit.get_tskit_version()
assert version == (1, 3, 0)
assert version == (1, 3, 1)

def test_tskit_version_file(self):
maj, min_, patch = _tskit.get_tskit_version()
Expand Down