From 247fcb1b296c9d3fe88574e5bfb8278ccda41910 Mon Sep 17 00:00:00 2001 From: xrotwang <xrotwang@googlemail.com> Date: Mon, 9 Apr 2018 11:14:45 +0200 Subject: [PATCH] release 0.9.1 --- setup.py | 2 +- src/newick.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a0d0702..1cae416 100755 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def read(fname): setup( name='newick', - version="0.9.0", + version="0.9.1", description='A python module to read and write the Newick format', long_description=read("README.md"), long_description_content_type="text/markdown", diff --git a/src/newick.py b/src/newick.py index aae59a1..f7e8b3b 100644 --- a/src/newick.py +++ b/src/newick.py @@ -8,7 +8,7 @@ from __future__ import unicode_literals import io import re -__version__ = "0.9.0" +__version__ = "0.9.1" RESERVED_PUNCTUATION = ':;,()' COMMENT = re.compile('\[[^\]]*\]') -- GitLab