diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fce8c97..eed64584 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 3.1.8 + +* Fix setuptools requirement if installing wheel +* Tests: Switch from `python setup.py test` to `tox` +* Small changes to build system configuration and tests + ## 3.1.7 * Fix random href fallback diff --git a/setup.py b/setup.py index 2dabe0f1..dafea7aa 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ from setuptools import find_packages, setup # When the version is updated, a new section in the CHANGELOG.md file must be # added too. -VERSION = "3.1.7" +VERSION = "3.1.8" with open("README.md", encoding="utf-8") as f: long_description = f.read()