diff --git a/CHANGELOG.md b/CHANGELOG.md index db27b99..52b6b6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,15 @@ All notable changes to this project will be documented in this file. For examples and guidelines see [https://keepachangelog.com/](https://keepachangelog.com/) + # [Unreleased] + +# [Released] + + +## [0.10.0] - 2023-06-15 + ### Added - Add documentation about templating with jinja2 @@ -32,8 +39,6 @@ For examples and guidelines see [https://keepachangelog.com/](https://keepachang - Fix default values for jinja2 template helper -# [Released] - ## [0.9.0] - 2023-04-23 ### Added diff --git a/fotoobo/__init__.py b/fotoobo/__init__.py index 9b0b8b2..6146a20 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 = "0.9.0" +__version__: str = "0.10.0" diff --git a/pyproject.toml b/pyproject.toml index 19e3dbd..040b7c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "fotoobo" -version = "0.9.0" +version = "0.10.0" description = "The awesome Fortinet Toolbox" authors = ["Patrik Spiess ", "Lukas Murer-Jäckle "] readme = "README.md"