Skip to content

Commit 31797f6

Browse files
authored
Merge pull request #1658 from benjeffery/release-beta-prep
C 0.99.14 release prep
2 parents 705640b + 00f5a21 commit 31797f6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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-
[0.99.14] - 2021-0X-XX
2+
[0.99.14] - 2021-09-03
33
----------------------
44

55
**Breaking changes**

c/tskit/core.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ to the API or ABI are introduced, i.e., the addition of a new function.
182182
The library patch version. Incremented when any changes not relevant to the
183183
to the API or ABI are introduced, i.e., internal refactors of bugfixes.
184184
*/
185-
#define TSK_VERSION_PATCH 13
185+
#define TSK_VERSION_PATCH 14
186186
/** @} */
187187

188188
/* Node flags */

python/tests/test_lowlevel.py

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

30183018
def test_tskit_version(self):
30193019
version = _tskit.get_tskit_version()
3020-
assert version == (0, 99, 13)
3020+
assert version == (0, 99, 14)
30213021

30223022

30233023
def test_uninitialised():

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.3.7"
4+
tskit_version = "0.3.8.dev1"

0 commit comments

Comments
 (0)