Skip to content

Commit 23c84e3

Browse files
authored
Merge pull request #801 from benjeffery/release-prep-python
0.3.0 release prep
2 parents 436b1ea + 7e09b6a commit 23c84e3

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

c/CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
**Breaking changes**
66

77
- The macro ``TSK_IMPUTE_MISSING_DATA`` is renamed to ``TSK_ISOLATED_NOT_MISSING``
8+
(:user:`benjeffery`, :issue:`716`, :pr:`794`)
89

910
**New features**
1011

c/tskit/core.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ to the API or ABI are introduced, i.e., the addition of a new function.
128128
The library patch version. Incremented when any changes not relevant to the
129129
to the API or ABI are introduced, i.e., internal refactors of bugfixes.
130130
*/
131-
#define TSK_VERSION_PATCH 4
131+
#define TSK_VERSION_PATCH 5
132132
/** @} */
133133

134134
/* Node flags */

python/CHANGELOG.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--------------------
2-
[0.3.0] - 2020-07-29
2+
[0.3.0] - 2020-08-27
33
--------------------
44

55
Major feature release for metadata schemas, set-like operations, mutation times,
@@ -30,7 +30,7 @@ SVG drawing improvements and many others.
3030
- The arguments to ``TreeSequence.genotype_matrix``, ``TreeSequence.haplotypes``
3131
and ``TreeSequence.variants`` must now be keyword arguments, not positional. This
3232
is to support the change from ``impute_missing_data`` to ``isolated_as_missing``
33-
in the arguments to these methods
33+
in the arguments to these methods. (:user:`benjeffery`, :issue:`716`, :pr:`794`)
3434

3535
**New features**
3636

@@ -150,6 +150,7 @@ SVG drawing improvements and many others.
150150
and ``TreeSequence.variants`` the ``impute_missing_data`` argument is deprecated
151151
and replaced with ``isolated_as_missing``. Note that to get the same behaviour
152152
``impute_missing_data=True`` should be replaced with ``isolated_as_missing=False``.
153+
(:user:`benjeffery`, :issue:`716`, :pr:`794`)
153154

154155
--------------------
155156
[0.2.3] - 2019-11-22

python/tests/test_lowlevel.py

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

22682268
def test_tskit_version(self):
22692269
version = _tskit.get_tskit_version()
2270-
self.assertEqual(version, (0, 99, 4))
2270+
self.assertEqual(version, (0, 99, 5))

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.0b2"
4+
tskit_version = "0.3.0"

0 commit comments

Comments
 (0)