From 2f7f5c3ff5de32ed987499bca8bb5bdea3389ed4 Mon Sep 17 00:00:00 2001 From: Kevin Steves Date: Thu, 21 Apr 2022 09:02:33 -0700 Subject: [PATCH] 0.19.0 --- HISTORY.rst | 9 +++++++++ lib/pan/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index a6efeb9..918f740 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,15 @@ Release History =============== +0.19.0 (2022-04-21) +------------------- + +- NOTE: Python 3 only release; Python 2 support is removed. In + general will plan to support the supported Python releases (with bug + and security updates); currently >= 3.7. + +- Switch to pyproject.toml based build system. + 0.18.0 (2022-04-13) ------------------- diff --git a/lib/pan/__init__.py b/lib/pan/__init__.py index 4e6c148..4b590e7 100644 --- a/lib/pan/__init__.py +++ b/lib/pan/__init__.py @@ -16,7 +16,7 @@ import logging -__version__ = '0.18.0' +__version__ = '0.19.0' DEBUG1 = logging.DEBUG DEBUG2 = DEBUG1 - 1