From 94eee60e785240afeed017abd7e2b4105f5395fb Mon Sep 17 00:00:00 2001 From: ko-zu Date: Fri, 21 Jun 2024 16:23:43 +0000 Subject: [PATCH] Release v1.0.1 Fix internal logic where domain name passed as a tuple of bytes, that contains UTF-8 encoded non-ascii chars, unintentionally matched PSL. Fixes #31. Signed-off-by: ko-zu --- CHANGES.md | 4 ++++ setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 68310a4..c26f120 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +### 1.0.1 (2024-06-22) +Fix internal logic where domain name passed as a tuple of bytes, that contains +UTF-8 encoded non-ascii chars, unintentionally matched PSL. Fixes #31. + ### 1.0.0 (2024-06-20) This version drops support for Python 2.x and 3.4. diff --git a/setup.py b/setup.py index f5727e2..6618dd1 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ ### version placeholder for release automation -__version__ = "1.0.0" +__version__ = "1.0.1" ### Change the minor version before git push to the master branch.