Release 3.3.1
diff --git a/Lib/fontTools/__init__.py b/Lib/fontTools/__init__.py
index c0ac48c..e4a1fc7 100644
--- a/Lib/fontTools/__init__.py
+++ b/Lib/fontTools/__init__.py
@@ -5,6 +5,6 @@
 
 log = logging.getLogger(__name__)
 
-version = __version__ = "3.3.1.dev0"
+version = __version__ = "3.3.1"
 
 __all__ = ["version", "log", "configLogger"]
diff --git a/NEWS b/NEWS
index 4350f8d..22bead5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+## TTX/FontTools Version 3.3.1 (2016-12-15)
+
 - [setup] We no longer use versioneer.py to compute fonttools version from git
   metadata, as this has caused issues for some users (#767). Now we bump the
   version strings manually with a custom `release` command of setup.py script.
diff --git a/setup.cfg b/setup.cfg
index 715072b..c05bb17 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 3.3.1.dev0
+current_version = 3.3.1
 commit = True
 tag = False
 tag_name = {new_version}
diff --git a/setup.py b/setup.py
index b28c0b3..30ea433 100755
--- a/setup.py
+++ b/setup.py
@@ -238,7 +238,7 @@
 
 setup(
 	name="fonttools",
-	version="3.3.1.dev0",
+	version="3.3.1",
 	description="Tools to manipulate font files",
 	author="Just van Rossum",
 	author_email="just@letterror.com",