diff --git a/Lib/fontTools/__init__.py b/Lib/fontTools/__init__.py index e4a1fc7ed..3e462c7f6 100644 --- a/Lib/fontTools/__init__.py +++ b/Lib/fontTools/__init__.py @@ -5,6 +5,6 @@ from fontTools.misc.loggingTools import configLogger log = logging.getLogger(__name__) -version = __version__ = "3.3.1" +version = __version__ = "3.3.2.dev0" __all__ = ["version", "log", "configLogger"] diff --git a/setup.cfg b/setup.cfg index c05bb17d7..2063c3258 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.3.1 +current_version = 3.3.2.dev0 commit = True tag = False tag_name = {new_version} diff --git a/setup.py b/setup.py index 30ea433ec..102a5d86d 100755 --- a/setup.py +++ b/setup.py @@ -238,7 +238,7 @@ class release(Command): setup( name="fonttools", - version="3.3.1", + version="3.3.2.dev0", description="Tools to manipulate font files", author="Just van Rossum", author_email="just@letterror.com",