From 5b62a8846f0958908d75be64b8ab4fd8926c385a Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Mon, 22 Nov 2021 02:18:37 +0200 Subject: [PATCH] Release 4.28.2 --- Lib/fontTools/__init__.py | 2 +- NEWS.rst | 15 +++++++++++++++ setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/Lib/fontTools/__init__.py b/Lib/fontTools/__init__.py index bc12b3381..ef13e216b 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.28.2.dev0" +version = __version__ = "4.28.2" __all__ = ["version", "log", "configLogger"] diff --git a/NEWS.rst b/NEWS.rst index 5a57b5dbc..59ad5ebf8 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,18 @@ +4.28.2 (released 2021-11-22) +---------------------------- + +- [otlLib] Remove duplicates when building coverage (#2433). +- [docs] Add interrogate configuration (#2443). +- [docs] Remove comment about missing “start” optional argument to ``calcChecksum`` (#2448). +- [cu2qu/cli] Adapt to the latest ufoLib2. +- [subset] Support subsetting SVG table and remove it from the list of drop by default tables (#534). +- [subset] add ``--pretty-svg`` option to pretty print SVG table contents (#2452). +- [merge] Support merging ``CFF`` tables (CID-keyed ``CFF`` is still not supported) (#2447). +- [merge] Support --output-file (#2447). +- [docs] Split table docs into individual pages (#2444). +- [feaLib] Forbid empty classes (#2446). +- [docs] Improve documentation for fontTools.ttLib.ttFont (#2442). + 4.28.1 (released 2021-11-08) ---------------------------- diff --git a/setup.cfg b/setup.cfg index ac7fc9c7b..87fca524f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.28.2.dev0 +current_version = 4.28.2 commit = True tag = False tag_name = {new_version} diff --git a/setup.py b/setup.py index ba3c4a9a8..d2e3c32bf 100755 --- a/setup.py +++ b/setup.py @@ -441,7 +441,7 @@ if ext_modules: setup_params = dict( name="fonttools", - version="4.28.2.dev0", + version="4.28.2", description="Tools to manipulate font files", author="Just van Rossum", author_email="just@letterror.com",