From e569154033a3ebe2e02a25790e3e65b949480d37 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Fri, 22 Apr 2022 19:26:47 +0100 Subject: [PATCH] Release 4.33.2 --- 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 cdce82c41..3b4a6c0c0 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.33.2.dev0" +version = __version__ = "4.33.2" __all__ = ["version", "log", "configLogger"] diff --git a/NEWS.rst b/NEWS.rst index e8aaf4f12..8805e1449 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,6 @@ +4.33.2 (released 2022-04-22) +---------------------------- + - [otBase] Make logging less verbose when harfbuzz fails to serialize. Do not exit at the first failure but continue attempting to fix offset overflow error using the pure-python serializer even when the ``USE_HARFBUZZ_REPACKER`` option was diff --git a/setup.cfg b/setup.cfg index c595346bd..beb0d275d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.33.2.dev0 +current_version = 4.33.2 commit = True tag = False tag_name = {new_version} diff --git a/setup.py b/setup.py index e66fa8236..328ca0e51 100755 --- a/setup.py +++ b/setup.py @@ -443,7 +443,7 @@ if ext_modules: setup_params = dict( name="fonttools", - version="4.33.2.dev0", + version="4.33.2", description="Tools to manipulate font files", author="Just van Rossum", author_email="just@letterror.com",