From 19a4c761e1c03dfa8b0de8d4a7836503203a2b09 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Mon, 6 Nov 2017 12:41:12 +0000 Subject: [PATCH] Release 2.1.0 - [ufo.document] Added API to generate a single instance, useful when parallelizing build for fonts with large number of instances. The DesignSpaceDocumentReader has a new `readInstance` method that reads and builds a single instance element. It takes a `key` tuple argument with the (attribute, value) used to find and select the instance to build. --- 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 79f24ac3..a355e636 100644 --- a/Lib/mutatorMath/__init__.py +++ b/Lib/mutatorMath/__init__.py @@ -33,7 +33,7 @@ """ -__version__ = "2.1.0.dev0" +__version__ = "2.1.0" from mutatorMath.objects.location import Location from mutatorMath.objects.mutator import Mutator diff --git a/setup.cfg b/setup.cfg index c17b3ccb..31f20ca7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.0.dev0 +current_version = 2.1.0 commit = True tag = False tag_name = {new_version} diff --git a/setup.py b/setup.py index e0bd3c72..042a642a 100755 --- a/setup.py +++ b/setup.py @@ -181,7 +181,7 @@ def run(self): setup( name="MutatorMath", - version="2.1.0.dev0", + version="2.1.0", description=("Python for piecewise linear interpolation in multiple " "dimensions with multiple, arbitrarily placed, masters."), long_description=long_description,