diff --git a/HISTORY.rst b/HISTORY.rst index 0c5c06e..3be4bd0 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,17 @@ Release History =============== +0.25.0 (2024-01-06) +------------------- + +- Support vsys for import_file(). + +- pan.xapi.py: In import_file() use dummy string for filename when not + specified and file is bytes; it's a required argument. + +- tests/test_xapi_fw_pano_import.py: Fix so test_01 is run and works + with Panorama. + 0.24.0 (2023-12-26) ------------------- diff --git a/lib/pan/__init__.py b/lib/pan/__init__.py index 6aec0f1..f82de3a 100644 --- a/lib/pan/__init__.py +++ b/lib/pan/__init__.py @@ -16,7 +16,7 @@ import logging -__version__ = '0.24.0' +__version__ = '0.25.0' DEBUG1 = logging.DEBUG DEBUG2 = DEBUG1 - 1