Skip to content

Commit 6708163

Browse files
committed
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).
1 parent 9c2ec50 commit 6708163

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/mutatorMath/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
3434
"""
3535

36-
__version__ = "2.1.1.dev0"
36+
__version__ = "2.1.1"
3737

3838
from mutatorMath.objects.location import Location
3939
from mutatorMath.objects.mutator import Mutator

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.1.1.dev0
2+
current_version = 2.1.1
33
commit = True
44
tag = False
55
tag_name = {new_version}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def run(self):
181181

182182
setup(
183183
name="MutatorMath",
184-
version="2.1.1.dev0",
184+
version="2.1.1",
185185
description=("Python for piecewise linear interpolation in multiple "
186186
"dimensions with multiple, arbitrarily placed, masters."),
187187
long_description=long_description,

0 commit comments

Comments
 (0)