Skip to content

Commit

Permalink
Increment version for bugfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
rawlins committed Nov 8, 2018
1 parent 47e9844 commit b714807
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog for `svgling`

## [0.1.2] - First real release - 2018-11-7

- Support for basic tree drawing with lists and `nltk.tree.Tree` objects.

## [0.1.3] Bugfix release - 2018-11-8

- Fix for non-leaf nodes that are larger than the leaf nodes they dominate.
- More flexible arguments to `draw_tree` (will accept the top node + children
via variable arguments, rather than a list/tuple as the first argument.)
- Documentation improvements.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
long_description = fh.read()

setup(name='svgling',
version='0.1.2',
version='0.1.3',
description='SVG+Python based rendering of linguistics-style (constituent) trees',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion svgling/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__all__ = ['core']

__version_info__ = (0, 1, 2)
__version_info__ = (0, 1, 3)
__release__ = False
__version__ = ".".join(str(i) for i in __version_info__)

Expand Down

0 comments on commit b714807

Please sign in to comment.