Release 4.58.1
diff --git a/Lib/fontTools/__init__.py b/Lib/fontTools/__init__.py
index ed0fd36..ee6b53b 100644
--- a/Lib/fontTools/__init__.py
+++ b/Lib/fontTools/__init__.py
@@ -3,6 +3,6 @@
log = logging.getLogger(__name__)
-version = __version__ = "4.58.1.dev0"
+version = __version__ = "4.58.1"
__all__ = ["version", "log", "configLogger"]
diff --git a/NEWS.rst b/NEWS.rst
index 5fc65d8..8689827 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -1,3 +1,6 @@
+4.58.1 (released 2025-05-28)
+----------------------------
+
- [varLib] Make sure that fvar named instances only reuse name ID 2 or 17 if they are at the default location across all axes, to match OT spec requirement (#3831).
- [feaLib] Improve single substitution promotion to multiple/ligature substitutions, fixing a few bugs as well (#3849).
- [loggingTools] Make ``Timer._time`` a static method that doesn't take self, makes it easier to override (#3836).
diff --git a/setup.cfg b/setup.cfg
index 8aef1d3..6d90290 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 4.58.1.dev0
+current_version = 4.58.1
commit = True
tag = False
tag_name = {new_version}
diff --git a/setup.py b/setup.py
index 97b2272..4f47ced 100755
--- a/setup.py
+++ b/setup.py
@@ -493,7 +493,7 @@
setup_params = dict(
name="fonttools",
- version="4.58.1.dev0",
+ version="4.58.1",
description="Tools to manipulate font files",
author="Just van Rossum",
author_email="just@letterror.com",