From d47fc460227cb1b8334559dc664b4b92ec2b0341 Mon Sep 17 00:00:00 2001 From: Peter Waller
Date: Mon, 11 Sep 2023 17:35:25 +0100 Subject: [PATCH] Version bump to 1.0.1 --- CHANGELOG | 12 +++++++++++- pyfiglet/version.py | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 434c1b2..457b842 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,14 @@ -# 2023-09-10 1.0.0 +# 2023-09-10 1.0.1 + + This release adds a python_requires >= 3.9 to setup.py to prevent old python + versions from picking up the newly incompatible version. + +# 2023-09-10 1.0.0 [yanked] + + This release was yanked, because it introduced incompatibilities with old + versions of python but did not specify a python_requires line. + + To prevent * Support for Python 2 was dropped * Support for compressed fonts diff --git a/pyfiglet/version.py b/pyfiglet/version.py index 1f356cc..cd7ca49 100644 --- a/pyfiglet/version.py +++ b/pyfiglet/version.py @@ -1 +1 @@ -__version__ = '1.0.0' +__version__ = '1.0.1'