diff --git a/Lib/fontTools/__init__.py b/Lib/fontTools/__init__.py index 0dff92222..502ca5cec 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.54.2.dev0" +version = __version__ = "4.55.0" __all__ = ["version", "log", "configLogger"] diff --git a/NEWS.rst b/NEWS.rst index 99c91a363..633768978 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,6 @@ +4.55.0 (released 2024-11-14) +---------------------------- + - [cffLib.specializer] Adjust stack use calculation (#3689) - [varLib] Lets not add mac names if the rest of name doesn't have them (#3688) diff --git a/setup.cfg b/setup.cfg index c540bf578..868a84822 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.54.2.dev0 +current_version = 4.55.0 commit = True tag = False tag_name = {new_version} diff --git a/setup.py b/setup.py index 834eebd82..2076bca07 100755 --- a/setup.py +++ b/setup.py @@ -482,7 +482,7 @@ if ext_modules: setup_params = dict( name="fonttools", - version="4.54.2.dev0", + version="4.55.0", description="Tools to manipulate font files", author="Just van Rossum", author_email="just@letterror.com",