From 78c7225e8d5f805c23d90517736aa6c5b0f32860 Mon Sep 17 00:00:00 2001 From: Unrud Date: Thu, 14 Jul 2022 22:06:48 +0200 Subject: [PATCH] Bump version to 3.1.8 --- CHANGELOG.md | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fce8c97b..eed645846 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 2dabe0f1f..dafea7aa9 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ # 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()