Release 3.3.1

This commit is contained in:
Cosimo Lupo 2016-12-15 11:12:13 +00:00
parent 4e3b5ed2cd
commit 95f76885e7
No known key found for this signature in database
GPG Key ID: B61AAAD0B53A6419
4 changed files with 5 additions and 3 deletions

View File

@ -5,6 +5,6 @@ from fontTools.misc.loggingTools import configLogger
log = logging.getLogger(__name__)
version = __version__ = "3.3.1.dev0"
version = __version__ = "3.3.1"
__all__ = ["version", "log", "configLogger"]

2
NEWS
View File

@ -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.

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.3.1.dev0
current_version = 3.3.1
commit = True
tag = False
tag_name = {new_version}

View File

@ -238,7 +238,7 @@ class release(Command):
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",