diff --git a/CHANGELOG.md b/CHANGELOG.md index af7184c..e4b5122 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,23 @@ For unreleased changes see [WHATSNEW.md](WHATSNEW.md) # [Released] +## [2.2.0] - 2024-10-14 + +### Added + +- FortiManager Methods for handling addresses and services (get and delete) + +### Changed + +- Upgrade requests to >=2.32 due to dependabot warning + +### Removed + +### Fixed + +- Fix crash when logging or audit_logging in configuration is not a dictionary +- Fix crash when log_file in configuration is missing or empty + ## [2.1.1] - 2024-05-14 ### Changed diff --git a/WHATSNEW.md b/WHATSNEW.md index 601a9e5..c43b3de 100644 --- a/WHATSNEW.md +++ b/WHATSNEW.md @@ -1,3 +1,6 @@ + +## [2.2.0] - 2024-10-14 + ### Added - FortiManager Methods for handling addresses and services (get and delete) diff --git a/fotoobo/__init__.py b/fotoobo/__init__.py index 63af3b2..a4821b8 100644 --- a/fotoobo/__init__.py +++ b/fotoobo/__init__.py @@ -8,4 +8,4 @@ from .fortinet import FortiAnalyzer, FortiClientEMS, FortiGate, FortiManager __all__ = ["FortiAnalyzer", "FortiClientEMS", "FortiGate", "FortiManager"] -__version__: str = "2.1.1" +__version__: str = "2.2.0" diff --git a/pyproject.toml b/pyproject.toml index 08e5e69..2c21661 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "fotoobo" -version = "2.1.1" +version = "2.2.0" description = "The awesome Fortinet Toolbox" authors = ["Patrik Spiess ", "Lukas Murer-Jäckle "] readme = "README.md"