diff --git a/HISTORY.rst b/HISTORY.rst index 386f237..55191a0 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,22 @@ Release History =============== +0.15.0 (2019-07-18) +------------------- + +- pan.afapi: Automatic int conversions have been deprecated in + Python3. See: https://bugs.python.org/issue27672 + +- Use 9.0 documentation links. + +- pan.wfapi, panwfapi.py, pan.wfapi.rst, panwfapi.rst: Add support for + retrieving additional malware test file types. + +- pycodestyle fixes. + +- pan.licapi, pan.afapi: Remove verbose argument from namedtuple() for + Python 3.7. From Michael Richardson. + 0.14.0 (2018-12-22) ------------------- diff --git a/lib/pan/__init__.py b/lib/pan/__init__.py index 5a1555f..8edd97f 100644 --- a/lib/pan/__init__.py +++ b/lib/pan/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) 2013-2018 Kevin Steves +# Copyright (c) 2013-2019 Kevin Steves # # Permission to use, copy, modify, and distribute this software for any # purpose with or without fee is hereby granted, provided that the above @@ -16,7 +16,7 @@ import logging -__version__ = '0.15.0.dev1' +__version__ = '0.15.0' DEBUG1 = logging.DEBUG DEBUG2 = DEBUG1 - 1