From 40a44f39d0c4d889d498863ac95711e2dde97f1a Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Sat, 14 Jan 2017 15:22:42 +0000 Subject: [PATCH] Release 3.5.0 --- Lib/fontTools/__init__.py | 2 +- NEWS | 4 ++++ setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Lib/fontTools/__init__.py b/Lib/fontTools/__init__.py index fe041cc3d..87b09d0fe 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.0.dev0" +version = __version__ = "3.5.0" __all__ = ["version", "log", "configLogger"] diff --git a/NEWS b/NEWS index 1d085ee5d..d0ac85f74 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +## TTX/FontTools Version 3.5.0 + +2017-01-14 + - Font tables read from XML can now be written back to XML with no loss. - GSUB/GPOS LookupType is written out in XML as an element, not comment. (#792) - When parsing cmap table, do not store items mapped to glyph id 0. (#790) diff --git a/setup.cfg b/setup.cfg index 9b3de0648..83c809106 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.5.0.dev0 +current_version = 3.5.0 commit = True tag = False tag_name = {new_version} diff --git a/setup.py b/setup.py index 7b4a18112..1200b1159 100755 --- a/setup.py +++ b/setup.py @@ -308,7 +308,7 @@ def find_data_files(manpath="share/man"): setup( name="fonttools", - version="3.5.0.dev0", + version="3.5.0", description="Tools to manipulate font files", author="Just van Rossum", author_email="just@letterror.com",