From 6b140803909bdcf64db10e502f47c45949a7881a Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Mon, 12 Jun 2023 11:46:39 +0100 Subject: [PATCH] Release 4.40.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 b3f46a06e..0011dd740 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.39.5.dev0" +version = __version__ = "4.40.0" __all__ = ["version", "log", "configLogger"] diff --git a/NEWS.rst b/NEWS.rst index fad4e8e0a..35c3b415c 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,6 @@ +4.40.0 (released 2023-06-12) +---------------------------- + - Published native binary wheels to PyPI for all the python minor versions and platform and architectures currently supported that would benefit from this. They will include precompiled Cython-accelerated modules (e.g. cu2qu) without requiring to compile them diff --git a/setup.cfg b/setup.cfg index 63f4b7ea1..55ade4b79 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.39.5.dev0 +current_version = 4.40.0 commit = True tag = False tag_name = {new_version} diff --git a/setup.py b/setup.py index 704b25dea..6a9e21909 100755 --- a/setup.py +++ b/setup.py @@ -467,7 +467,7 @@ if ext_modules: setup_params = dict( name="fonttools", - version="4.39.5.dev0", + version="4.40.0", description="Tools to manipulate font files", author="Just van Rossum", author_email="just@letterror.com",