Skip to content

Commit

Permalink
Merge pull request #83 from source-foundry/prep-v4.0
Browse files Browse the repository at this point in the history
v4.0.0 prep
  • Loading branch information
chrissimpkins authored Nov 8, 2021
2 parents 73b60bd + 66e46be commit edee814
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## v4.0.0

- remove Python 3.6 support (this was eliminated in our fontTools dependency)
- update fonttools dependency to v4.28.1
- update GitHub Actions CI workflow to include Python 3.10 testing
- update GitHub Actions workflows to use cPython 3.10 runner by default

## v3.1.0

- add a `dehinter.font.dehint` function to be used by programs that import dehinter as a module
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

## About

`dehinter` is a Python command line application that removes TrueType instruction sets, global hinting tables, and other associated OpenType table data in font files. The tool provides cross-platform support on macOS, Windows, and Linux systems with a Python v3.6+ interpreter.
`dehinter` is a Python command line application that removes TrueType instruction sets, global hinting tables, and other associated OpenType table data in font files. The tool provides cross-platform support on macOS, Windows, and Linux systems with a Python v3.7+ interpreter.

## What it does

Expand All @@ -26,7 +26,7 @@ Options allow you to maintain the original version of any of these tables.

## Installation

`dehinter` requires a Python 3.6+ interpreter.
`dehinter` requires a Python 3.7+ interpreter.

Installation in a [Python3 virtual environment](https://docs.python.org/3/library/venv.html) is recommended as dependencies are pinned to versions that are confirmed to work with this project.

Expand Down
2 changes: 1 addition & 1 deletion lib/dehinter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version = __version__ = "3.1.0"
version = __version__ = "4.0.0"

0 comments on commit edee814

Please sign in to comment.