Skip to content

Commit 22079a2

Browse files
authored
Merge pull request #1050 from benjeffery/post-release
0.3.3 post release tasks
2 parents 10cb792 + c5d4de0 commit 22079a2

File tree

5 files changed

+25
-3
lines changed

5 files changed

+25
-3
lines changed

c/CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
---------------------
2+
[0.99.9] - 2021-XX-XX
3+
---------------------
4+
5+
**Breaking changes**
6+
7+
**Features**
8+
9+
**Bugfixes**
10+
11+
112
---------------------
213
[0.99.8] - 2020-11-27
314
---------------------

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 8
132+
#define TSK_VERSION_PATCH 9
133133
/** @} */
134134

135135
/* Node flags */

python/CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
--------------------
2+
[0.X.X] - 2021-XX-XX
3+
--------------------
4+
5+
**Breaking changes**
6+
7+
**Features**
8+
9+
**Bugfixes**
10+
11+
112
--------------------
213
[0.3.3] - 2020-11-27
314
--------------------

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, 8)
2622+
assert version == (0, 99, 9)
26232623

26242624

26252625
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.3"
4+
tskit_version = "0.3.4.dev1"

0 commit comments

Comments
 (0)