From e191414053ce09b40d9c32e35f9e5822c5049437 Mon Sep 17 00:00:00 2001 From: Chris Kuehl Date: Tue, 21 Feb 2023 11:51:45 -0800 Subject: [PATCH] v2.0.0 --- aactivator.py | 2 +- debian/changelog | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/aactivator.py b/aactivator.py index 2eef5a6..1983c33 100755 --- a/aactivator.py +++ b/aactivator.py @@ -39,7 +39,7 @@ ACTIVATE = '.activate.sh' DEACTIVATE = '.deactivate.sh' -__version__ = '1.0.1' +__version__ = '2.0.0' def init(arg0): diff --git a/debian/changelog b/debian/changelog index 44e84ea..9408bbd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +aactivator (2.0.0) unstable; urgency=medium + + * Drop Python 2 support (thanks @kennydo!) + * Replace import which is deprecated in python3.11 and removed in + python3.13 (thanks @kennydo!) + + -- Chris Kuehl Tue, 21 Feb 2023 11:49:23 -0800 + aactivator (1.0.1) unstable; urgency=medium * Switch to Python 3 by default.