Skip to content

Commit

Permalink
Incremented version and updated CHANGELOG.
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke-Poeppel committed Sep 20, 2021
1 parent e254c35 commit 940e08b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ All important changes to the treeplotter package will be documented here.

The changelog format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and the project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.5.0](https://github.com/Luke-Poeppel/treeplotter/tree/v0.5.0) September 20, 2021
#### Added
- Three methods for querying children: `get_child_by_name`, `get_child_by_name_depth` (a depth-first approach), and `get_child_by_name_breadth` (a breadth-first approach). All three were contributed by Ricardo Reis.

#### Fixed
- Method for removing children was erroneously based on value, not the node itself. Bugfix provided by Ricardo Reis.

## [v0.4.3](https://github.com/Luke-Poeppel/treeplotter/tree/v0.4.3) June 19, 2021
#### Fixed
- SECOND fix of the version issue. Removing `VERSION` file entirely.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# `treeplotter`
[![Actions Status](https://github.com/Luke-Poeppel/treeplotter/workflows/Build/badge.svg)](https://github.com/Luke-Poeppel/treeplotter/actions)
![img](https://img.shields.io/badge/semver-0.4.3-green)
![img](https://img.shields.io/badge/semver-0.5.0-green)

Tree plotting is really hard in Python. The `treeplotter` package aims to make the process easier. It wraps the TreantJS library to plot trees and saves them to a rendered HTML file. This HTML file is then also exported to a high-res PNG by wrapping R's ``webshot`` package. The package requires some complicated installs, but this is the price to pay to not use any R, Javascript, or CSS ;)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
####################################################################################################
from setuptools import setup, find_packages

VERSION = "0.4.3"
VERSION = "0.5.0"

with open('README.md') as f:
long_description = f.read()
Expand Down
2 changes: 1 addition & 1 deletion treeplotter/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.3"
__version__ = "0.5.0"

0 comments on commit 940e08b

Please sign in to comment.