Skip to content

Commit

Permalink
Release 2.1.0
Browse files Browse the repository at this point in the history
- [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.
  • Loading branch information
anthrotype committed Nov 6, 2017
1 parent 0a0afe7 commit 19a4c76
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Lib/mutatorMath/__init__.py
Expand Up @@ -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
2 changes: 1 addition & 1 deletion 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}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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,
Expand Down

0 comments on commit 19a4c76

Please sign in to comment.