Skip to content

Commit 5d68315

Browse files
Bumped version and update changelog.
1 parent de26a6c commit 5d68315

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

c/CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
---------------------
2+
[0.99.2] - 2019-03-27
3+
---------------------
4+
5+
Bugfix release. Changes:
6+
7+
- Fix incorrect errors on tbl_collection_dump (#132)
8+
- Catch table overflows (#157)
9+
110
---------------------
211
[0.99.1] - 2019-01-24
312
---------------------

c/tskit/core.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ to the API or ABI are introduced, i.e., the addition of a new function.
8080
The library patch version. Incremented when any changes not relevant to the
8181
to the API or ABI are introduced, i.e., internal refactors of bugfixes.
8282
*/
83-
#define TSK_VERSION_PATCH 1
83+
#define TSK_VERSION_PATCH 2
8484
/** @} */
8585

8686
/* Node flags */

python/tests/test_lowlevel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -945,4 +945,4 @@ def test_kastore_version(self):
945945

946946
def test_tskit_version(self):
947947
version = _tskit.get_tskit_version()
948-
self.assertEqual(version, (0, 99, 1))
948+
self.assertEqual(version, (0, 99, 2))

0 commit comments

Comments
 (0)