Skip to content

Commit

Permalink
Fix angle multiplication (#189). Adds strict to MathGlyph (defaul…
Browse files Browse the repository at this point in the history
…t is `False`). Strict means that line segments are not converted to curve segments with (0,0) control points and offcurves stacked on on-curves are not filtered out when extracting. (#235). Last version to support Python 2
  • Loading branch information
benkiel committed Jun 22, 2021
1 parent cf03a08 commit 7685435
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Lib/fontMath/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
from fontMath.mathKerning import MathKerning


version = __version__ = "0.7.0.dev0"
version = __version__ = "0.7.0"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.7.0.dev0
current_version = 0.7.0
commit = True
tag = False
tag_name = {new_version}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name="fontMath",
version="0.7.0.dev0",
version="0.7.0",
description="A set of objects for performing math operations on font data.",
# long_description=long_description,
author="Tal Leming",
Expand Down

0 comments on commit 7685435

Please sign in to comment.