diff --git a/HISTORY.rst b/HISTORY.rst index 76dc8bc..b7cc4e0 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,18 @@ History ------- +3.8 (2024-08-23) +++++++++++++++++ + +- Fix regression where IDNAError exception was not being produced for + certain inputs. +- Add support for Python 3.13, drop support for Python 3.5 as it is no + longer testable. +- Documentation improvements +- Updates to package testing using Github actions + +Thanks to Hugo van Kemenade for contributions to this release. + 3.7 (2024-04-11) ++++++++++++++++ diff --git a/idna/package_data.py b/idna/package_data.py index ed81113..79aa47c 100644 --- a/idna/package_data.py +++ b/idna/package_data.py @@ -1,2 +1,2 @@ -__version__ = '3.7' +__version__ = '3.8'