diff --git a/HISTORY.rst b/HISTORY.rst index 55191a0..38ad282 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,26 @@ Release History =============== +0.16.0 (2020-01-11) +------------------- + +- pan.config: Support 9.1.0 config for set format. + +- pan.licapi: 'version' field in request header should use version + attribute and not int(). This was not noticed because version:256 + would previously use the current API version of 1. Bug found by + Stacey Sheldon. + +- pan.licapi.rst: Document pan.licapi._ApiVersion int() layout + correctly. + +- Use 9.1 documentation links. + +- panwfapi.py: Fix 'SyntaxWarning: "is" with a literal. Did you mean + "=="?' warning from Python 3.8. + +- setup.py: Add Python 3.8. + 0.15.0 (2019-07-18) ------------------- diff --git a/lib/pan/__init__.py b/lib/pan/__init__.py index 8edd97f..0c0aa77 100644 --- a/lib/pan/__init__.py +++ b/lib/pan/__init__.py @@ -16,7 +16,7 @@ import logging -__version__ = '0.15.0' +__version__ = '0.16.0' DEBUG1 = logging.DEBUG DEBUG2 = DEBUG1 - 1