From 96d15d6c127f224007f4579931529512b1de22ba Mon Sep 17 00:00:00 2001 From: Kevin Steves Date: Sat, 6 Jan 2024 11:46:05 -0800 Subject: [PATCH] 0.25.0 --- HISTORY.rst | 11 +++++++++++ lib/pan/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) 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