diff --git a/setup.py b/setup.py
index 037d0c33d0c99019499a15b1313cee8360ff03e6..70ffb0c685ed784b2ebd2d10b52d6edc98fde630 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 129c5e400b4c2b7d0afd7dd8948a27567191c1ee..39f76761acf08c870969cfd69e2651e62b2133dd 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('\[[^\]]*\]')