From 2c1b7ea18c6d2ce76deb441a691ce15360199e9f Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Wed, 30 Sep 2020 16:17:43 +0100 Subject: [PATCH] Release 4.16.0 --- Lib/fontTools/__init__.py | 2 +- NEWS.rst | 3 +++ setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Lib/fontTools/__init__.py b/Lib/fontTools/__init__.py index b1179ebf9..b754f9d9c 100644 --- a/Lib/fontTools/__init__.py +++ b/Lib/fontTools/__init__.py @@ -4,6 +4,6 @@ from fontTools.misc.loggingTools import configLogger log = logging.getLogger(__name__) -version = __version__ = "4.15.1.dev0" +version = __version__ = "4.16.0" __all__ = ["version", "log", "configLogger"] diff --git a/NEWS.rst b/NEWS.rst index 24720f6c8..8a637a81d 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,6 @@ +4.16.0 (released 2020-09-30) +---------------------------- + - [removeOverlaps] Added new module and ``removeOverlaps`` function that merges overlapping contours and components in TrueType glyphs. It requires the `skia-pathops `__ module. diff --git a/setup.cfg b/setup.cfg index 5ac4a1da9..b602d25e5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.15.1.dev0 +current_version = 4.16.0 commit = True tag = False tag_name = {new_version} diff --git a/setup.py b/setup.py index 7bce2d243..b4e398579 100755 --- a/setup.py +++ b/setup.py @@ -441,7 +441,7 @@ if ext_modules: setup_params = dict( name="fonttools", - version="4.15.1.dev0", + version="4.16.0", description="Tools to manipulate font files", author="Just van Rossum", author_email="just@letterror.com",