From a7b4837e966dccf3d31b92c44c3cb99bda2beaec Mon Sep 17 00:00:00 2001 From: Kevin Steves Date: Sun, 19 Nov 2023 11:33:25 -0800 Subject: [PATCH] 0.23.0 --- HISTORY.rst | 20 ++++++++++++++++++++ lib/pan/__init__.py | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 81e6b6d..ad11c5c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,26 @@ Release History =============== +0.23.0 (2023-11-19) +------------------- + +- Rename test filename, log() method does not support Panorama to + device redirection. + +- Use 11.1 documentation links. + +- pan.xapi, pan.xapi.rst, panxapi.rst: Modified version of + https://github.com/kevinsteves/pan-python/pull/54 + from Matthew Kazmar. + + type=export request supports target argument. + +- tests/test_xapi_fw_tgt_multi_config.py: PAN-196392 is fixed. + +- tests/test_xapi_fw_tgt_multi_config.py: Error message changed. + +- pan.config: Support 11.1.0 config for set format. + 0.22.0 (2023-03-07) ------------------- diff --git a/lib/pan/__init__.py b/lib/pan/__init__.py index 8936d05..8003765 100644 --- a/lib/pan/__init__.py +++ b/lib/pan/__init__.py @@ -16,7 +16,7 @@ import logging -__version__ = '0.22.0' +__version__ = '0.23.0' DEBUG1 = logging.DEBUG DEBUG2 = DEBUG1 - 1