From 06b9c911cbde6177b75bcf574b6dde7851de96ba Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Fri, 21 Jul 2023 17:26:59 +0100 Subject: [PATCH] Release 4.41.1 --- 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 fb18248a7..0b051c1d7 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.41.1.dev0" +version = __version__ = "4.41.1" __all__ = ["version", "log", "configLogger"] diff --git a/NEWS.rst b/NEWS.rst index 2e1a0b95a..a118c497c 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,6 @@ +4.41.1 (released 2023-07-21) +---------------------------- + - [subset] Fixed perf regression in v4.41.0 by making ``NameRecordVisitor`` only visit tables that do contain nameID references (#3213, #3214). - [varLib.instancer] Support instancing fonts containing null ConditionSet offsets in diff --git a/setup.cfg b/setup.cfg index 7063a096b..4f254ff58 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.41.1.dev0 +current_version = 4.41.1 commit = True tag = False tag_name = {new_version} diff --git a/setup.py b/setup.py index 8b8c53191..82be51a41 100755 --- a/setup.py +++ b/setup.py @@ -467,7 +467,7 @@ if ext_modules: setup_params = dict( name="fonttools", - version="4.41.1.dev0", + version="4.41.1", description="Tools to manipulate font files", author="Just van Rossum", author_email="just@letterror.com",