diff --git a/Lib/fontTools/__init__.py b/Lib/fontTools/__init__.py index 9d8a58cb7..8cc2e6cc6 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.37.3.dev0" +version = __version__ = "4.37.3" __all__ = ["version", "log", "configLogger"] diff --git a/NEWS.rst b/NEWS.rst index 6186ece7b..4fb6a4d39 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,6 @@ +4.37.3 (released 2022-09-20) +---------------------------- + - Fix arguments in calls to (glyf) glyph.draw() and drawPoints(), whereby offset wasn't correctly passed down; this fix also exposed a second bug, where lsb and tsb were not set (#2824, #2825, adobe-type-tools/afdko#1560). diff --git a/setup.cfg b/setup.cfg index 6bf80eadb..cb6105319 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.37.3.dev0 +current_version = 4.37.3 commit = True tag = False tag_name = {new_version} diff --git a/setup.py b/setup.py index 045f14f2a..76a5a3519 100755 --- a/setup.py +++ b/setup.py @@ -452,7 +452,7 @@ if ext_modules: setup_params = dict( name="fonttools", - version="4.37.3.dev0", + version="4.37.3", description="Tools to manipulate font files", author="Just van Rossum", author_email="just@letterror.com",