Skip to content

Commit 4adc447

Browse files
committed
v0.3.0
1 parent 56eb023 commit 4adc447

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

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

3+
## v0.3.0
4+
5+
- add `coordinates` sub-command with path begin, on-curve, off-curve, and end coordinate reporting
6+
- refactor `stringbuilder.path_header` function to `stringbuilder.report_header`
7+
- add `stringbuilder.green_text` function
8+
- add `stringbuilder.red_text` function
9+
- broaden type annotations across Python sources
10+
311
## v0.2.0
412

513
- add `direction` sub-command with path direction reporting

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@
88

99
Path Inspector is a TTF font curve path inspection application. The Python package installs the `pathins` command line executable and requires a Python v3.6+ interpreter.
1010

11-
The project is in a very early stage of development and is not ready for general use.
12-
13-
The following sub-command support is available:
11+
The following sub-commands available:
1412

13+
- `coordinates`: path coordinates report (as of v0.3.0)
1514
- `direction`: outermost contour path direction report (as of v0.2.0)
1615
- `path`: curve path report
1716

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.2.1-dev0"
3+
version = __version__ = "0.3.0"

0 commit comments

Comments
 (0)