From 78dee2bad5a62841133cce3d8b3f59a50251dbbe Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Wed, 6 Jul 2022 11:58:46 +0100 Subject: [PATCH] Release 4.34.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 ef86bd645..7d92ecb53 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.4.dev0" +version = __version__ = "4.34.0" __all__ = ["version", "log", "configLogger"] diff --git a/NEWS.rst b/NEWS.rst index 95b8670d2..9a353d83b 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,6 @@ +4.34.0 (released 2022-07-06) +---------------------------- + - [instancer] Set RIBBI bits in head and OS/2 table when cutting instances and the subfamily nameID=2 contains strings like 'Italic' or 'Bold' (#2673). - [otTraverse] Addded module containing methods for traversing trees of otData tables diff --git a/setup.cfg b/setup.cfg index fbcac8eda..d5ae716e8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.33.4.dev0 +current_version = 4.34.0 commit = True tag = False tag_name = {new_version} diff --git a/setup.py b/setup.py index fc5b0b0e8..f0eedfd6f 100755 --- a/setup.py +++ b/setup.py @@ -443,7 +443,7 @@ if ext_modules: setup_params = dict( name="fonttools", - version="4.33.4.dev0", + version="4.34.0", description="Tools to manipulate font files", author="Just van Rossum", author_email="just@letterror.com",