Skip to content

Commit 0aeef44

Browse files
Final changes for Python v0.1.5.
1 parent 71510dd commit 0aeef44

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

python/CHANGELOG.rst

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
11
--------------------
2-
[0.1.5] - 2019-XX-XX
2+
[0.1.5] - 2019-03-27
33
--------------------
44

5-
Under development.
6-
7-
This release removes support for Python 2.
5+
This release removes support for Python 2, adds more flexible tree access and a
6+
new ``tskit`` command line interface.
87

98
**New features**
109

1110
- Remove support for Python 2 (:user:`hugovk`). See :issue:`137` and :pr:`140`.
11+
- More flexible tree API (:pr:`121`). Adds ``TreeSequence.at`` and
12+
``TreeSequence.at_index`` methods to find specific trees, and efficient support
13+
for backwards traversal using ``reversed(ts.trees())``.
14+
- Add initial ``tskit`` CLI (:issue:`80`)
15+
- Add ``tskit info`` CLI command (:issue:`66`)
16+
- Enable drawing SVG trees with coloured edges (:user:`hyanwong`; :issue:`149`).
17+
- Add ``Tree.is_descendant`` method (:issue:`120`)
18+
- Add ``Tree.copy`` method (:issue:`122`)
19+
20+
**Bugfixes**
21+
22+
- Fixes to the low-level C API (:issue:`132` and :issue:`157`)
1223

1324
--------------------
1425
[0.1.4] - 2019-02-01

python/tskit/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Definitive location for the version number.
2-
tskit_version = "0.1.5.dev0"
2+
tskit_version = "0.1.5"

0 commit comments

Comments
 (0)