Skip to content

Commit 7685435

Browse files
committed
Fix angle multiplication (#189). Adds strict to MathGlyph (default 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
1 parent cf03a08 commit 7685435

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Lib/fontMath/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
from fontMath.mathKerning import MathKerning
1111

1212

13-
version = __version__ = "0.7.0.dev0"
13+
version = __version__ = "0.7.0"

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 = 0.7.0.dev0
2+
current_version = 0.7.0
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
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name="fontMath",
16-
version="0.7.0.dev0",
16+
version="0.7.0",
1717
description="A set of objects for performing math operations on font data.",
1818
# long_description=long_description,
1919
author="Tal Leming",

0 commit comments

Comments
 (0)