From 6708163faaafd88bb6220b422c134dda437055c7 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Thu, 7 Jun 2018 11:00:01 +0100 Subject: [PATCH] Release 2.1.1 - Assume incoming locations might be plain dicts and wrap them (#110). - Don't fail when reading designspace documents with `format` attribute formatted as a float, as in latest designspace spec (#117). --- Lib/mutatorMath/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/mutatorMath/__init__.py b/Lib/mutatorMath/__init__.py index d188585e..ee4973b4 100644 --- a/Lib/mutatorMath/__init__.py +++ b/Lib/mutatorMath/__init__.py @@ -33,7 +33,7 @@ """ -__version__ = "2.1.1.dev0" +__version__ = "2.1.1" from mutatorMath.objects.location import Location from mutatorMath.objects.mutator import Mutator diff --git a/setup.cfg b/setup.cfg index 57eb4952..f3d61a37 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.1.dev0 +current_version = 2.1.1 commit = True tag = False tag_name = {new_version} diff --git a/setup.py b/setup.py index 16195b3f..5141b785 100755 --- a/setup.py +++ b/setup.py @@ -181,7 +181,7 @@ def run(self): setup( name="MutatorMath", - version="2.1.1.dev0", + version="2.1.1", description=("Python for piecewise linear interpolation in multiple " "dimensions with multiple, arbitrarily placed, masters."), long_description=long_description,