From 9d5c3adc7cd9fb411ac7eededc8e3172cd49612d Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Thu, 20 May 2021 19:33:34 +0100 Subject: [PATCH] Release 4.24.3 --- 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 c2dd8463d..95f8f91ca 100644 --- a/Lib/fontTools/__init__.py +++ b/Lib/fontTools/__init__.py @@ -3,6 +3,6 @@ from fontTools.misc.loggingTools import configLogger log = logging.getLogger(__name__) -version = __version__ = "4.24.3.dev0" +version = __version__ = "4.24.3" __all__ = ["version", "log", "configLogger"] diff --git a/NEWS.rst b/NEWS.rst index c0bd5471d..1d466e77f 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,6 @@ +4.24.3 (released 2021-05-20) +---------------------------- + - [otTables] Fixed ``AttributeError`` in methods that split LigatureSubst, MultipleSubst and AlternateSubst subtables when an offset overflow occurs. The ``Format`` attribute was removed in v4.22.0 (#2319). diff --git a/setup.cfg b/setup.cfg index 08b1a3836..e3e06780b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.24.3.dev0 +current_version = 4.24.3 commit = True tag = False tag_name = {new_version} diff --git a/setup.py b/setup.py index 5a183c368..9e53da7ec 100755 --- a/setup.py +++ b/setup.py @@ -441,7 +441,7 @@ if ext_modules: setup_params = dict( name="fonttools", - version="4.24.3.dev0", + version="4.24.3", description="Tools to manipulate font files", author="Just van Rossum", author_email="just@letterror.com",