From 73969b7c6c1ae774ee80f6a97bbb687542765df9 Mon Sep 17 00:00:00 2001 From: xrotwang <xrotwang@googlemail.com> Date: Mon, 9 Apr 2018 11:27:25 +0200 Subject: [PATCH] release 0.9.2 --- setup.py | 2 +- src/newick.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 037d0c3..70ffb0c 100755 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def read(fname): setup( name='newick', - version="0.9.2.dev0", + version="0.9.2", 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 129c5e4..39f7676 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.2.dev0" +__version__ = "0.9.2" RESERVED_PUNCTUATION = ':;,()' COMMENT = re.compile('\[[^\]]*\]') -- GitLab