From 647d428b7b52d62299c149145ef56718b858d468 Mon Sep 17 00:00:00 2001 From: Nikolaus Waxweiler Date: Thu, 28 May 2020 18:24:54 +0100 Subject: [PATCH] Release 4.11.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 517f78389..3e785a89f 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.10.3.dev0" +version = __version__ = "4.11.0" __all__ = ["version", "log", "configLogger"] diff --git a/NEWS.rst b/NEWS.rst index 81489e356..674fdb846 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,6 @@ +4.11.0 (released 2020-05-28) +---------------------------- + - [feaLib] Introduced ``includeDir`` parameter on Parser and IncludingLexer to explicitly specify the directory to search when ``include()`` statements are encountered (#1973). diff --git a/setup.cfg b/setup.cfg index a146b92f8..6610380b6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.10.3.dev0 +current_version = 4.11.0 commit = True tag = False tag_name = {new_version} diff --git a/setup.py b/setup.py index f4ba13950..628cf9621 100755 --- a/setup.py +++ b/setup.py @@ -437,7 +437,7 @@ if ext_modules: setup_params = dict( name="fonttools", - version="4.10.3.dev0", + version="4.11.0", description="Tools to manipulate font files", author="Just van Rossum", author_email="just@letterror.com",