Skip to content

Commit 7a11e2c

Browse files
committed
v0.5.0
1 parent d19a6c6 commit 7a11e2c

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## v0.5.0
4+
5+
- add `segments` sub-command with glyph segment line distance and arc length reporting
6+
- performance improvement: removed `sys.stdout.isatty()` check from loops in stringbuilder module
7+
- fix: do not apply ANSI color escapes when we are not in a TTY, includes cyan_text, cyan_bright_text, green_text, and red_text functions in the stringbuilder module
8+
- add `--pretty` mypy option to Makefile type checking target
9+
- add line length = 90 definition to the isort import sorting Makefile target
10+
- bump fontTools dependency to v4.16.1
11+
312
## v0.4.0
413

514
- add `contours` sub-command with glyph contour number reporting

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ The following sub-commands are available:
1414
- `coordinates`: path coordinates report (as of v0.3.0)
1515
- `direction`: outermost contour path direction report (as of v0.2.0)
1616
- `path`: curve path report
17+
- `segments`: curve segment report, with line distances and quadratic curve arc lengths (as of v0.5.0)
1718

1819
## Installation
1920

lib/pathins/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env python3
22

3-
version = __version__ = "0.4.1-dev0"
3+
version = __version__ = "0.5.0"

0 commit comments

Comments
 (0)