Release 3.41.2
diff --git a/Lib/fontTools/__init__.py b/Lib/fontTools/__init__.py
index 6237620..ad773e8 100644
--- a/Lib/fontTools/__init__.py
+++ b/Lib/fontTools/__init__.py
@@ -5,6 +5,6 @@
 
 log = logging.getLogger(__name__)
 
-version = __version__ = "3.41.2.dev0"
+version = __version__ = "3.41.2"
 
 __all__ = ["version", "log", "configLogger"]
diff --git a/NEWS.rst b/NEWS.rst
index be404ff..a70ad80 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -1,3 +1,6 @@
+3.41.2 (released 2019-05-13)
+----------------------------
+
 - [cffLib] Fixed issue when importing a ``CFF2`` variable font from XML, whereby
   the VarStore state was not propagated to PrivateDict (#1598).
 - [varLib] Don't drop ``post`` glyph names when building CFF2 variable font (#1609).
diff --git a/setup.cfg b/setup.cfg
index 50eb908..39f1b54 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 3.41.2.dev0
+current_version = 3.41.2
 commit = True
 tag = False
 tag_name = {new_version}
diff --git a/setup.py b/setup.py
index 1b4307a..2d3124a 100755
--- a/setup.py
+++ b/setup.py
@@ -352,7 +352,7 @@
 
 setup(
 	name="fonttools",
-	version="3.41.2.dev0",
+	version="3.41.2",
 	description="Tools to manipulate font files",
 	author="Just van Rossum",
 	author_email="just@letterror.com",