From c66a2bc3279b536ead6e098698ccf7c5ecc77772 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Thu, 3 Nov 2016 14:12:09 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=203.1.2=20=E2=86=92=203.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I had forgotten to bump the version for 3.2.0... Sorry :( This is not a problem for the released packages, since versioneer correctly writes the tagged version. It's only the hard-coded version string that's used as a fallback if git fails to compute the version which I forgot to update. --- Lib/fontTools/__init__.py | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/fontTools/__init__.py b/Lib/fontTools/__init__.py index 203973d62..948c134d5 100644 --- a/Lib/fontTools/__init__.py +++ b/Lib/fontTools/__init__.py @@ -9,7 +9,7 @@ log = logging.getLogger(__name__) v = get_versions() if v["error"]: __import__('warnings').warn("versioneer: %s" % v['error'], RuntimeWarning) - __version__ = "3.1.2" + __version__ = "3.2.0" else: __version__ = v['version'] del get_versions, v diff --git a/setup.cfg b/setup.cfg index 01dff4049..0b9291230 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.1.2 +current_version = 3.2.0 commit = True tag = True tag_name = {new_version}