diff --git a/Lib/fontTools/__init__.py b/Lib/fontTools/__init__.py index 0f729cddf..bf4ce0c31 100644 --- a/Lib/fontTools/__init__.py +++ b/Lib/fontTools/__init__.py @@ -5,6 +5,6 @@ from fontTools.misc.loggingTools import configLogger log = logging.getLogger(__name__) -version = __version__ = "3.5.1.dev0" +version = __version__ = "3.6.0" __all__ = ["version", "log", "configLogger"] diff --git a/NEWS.rst b/NEWS.rst index 7d84efb97..e2c352330 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,6 @@ +3.6.0 (released 2017-01-26) +--------------------------- + - [varLib] Refactored and improved the variation-font-building process. - Assembly code in the fpgm, prep, and glyf tables is now indented in XML output for improved readability. The ``instruction`` element is diff --git a/setup.cfg b/setup.cfg index ab286c59c..184f99f93 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.5.1.dev0 +current_version = 3.6.0 commit = True tag = False tag_name = {new_version} diff --git a/setup.py b/setup.py index 7d292f9d8..7c06d55ba 100755 --- a/setup.py +++ b/setup.py @@ -309,7 +309,7 @@ def find_data_files(manpath="share/man"): setup( name="fonttools", - version="3.5.1.dev0", + version="3.6.0", description="Tools to manipulate font files", author="Just van Rossum", author_email="just@letterror.com",