diff --git a/Lib/glyphsLib/__init__.py b/Lib/glyphsLib/__init__.py index 39bb3f59c..173da31c7 100644 --- a/Lib/glyphsLib/__init__.py +++ b/Lib/glyphsLib/__init__.py @@ -31,7 +31,7 @@ from glyphsLib.writer import dump, dumps from glyphsLib.util import clean_ufo -__version__ = "2.3.0.dev0" +__version__ = "2.3.0" # Doing `import *` from a module that uses unicode_literals, produces # "TypeError: Item in ``from list'' must be str, not unicode" on Python 2. diff --git a/setup.cfg b/setup.cfg index c52caefc9..a01815e30 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.3.0.dev0 +current_version = 2.3.0 commit = True tag = False tag_name = v{new_version} diff --git a/setup.py b/setup.py index bd7e28f56..423ae2222 100644 --- a/setup.py +++ b/setup.py @@ -163,7 +163,7 @@ def run(self): setup( name='glyphsLib', - version='2.3.0.dev0', + version='2.3.0', author="James Godfrey-Kittle", author_email="jamesgk@google.com", description="A bridge from Glyphs source files (.glyphs) to UFOs",