diff --git a/CHANGELOG.md b/CHANGELOG.md index 51e5721..58b06cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ +## v0.19.2 (2023-12-11) + +### Fix + +* fix: Allow pydantic2 versions and version fix (#31) + +* fix: allow newer pydantic versions + +* chore: update gitignore + +* ci: version bump fix ([`dfb2fd4`](https://github.com/adamkirchberger/nectl/commit/dfb2fd4d9e70681f535f74ac5ab66823b71dd568)) + + ## v0.19.1 (2023-11-21) ### Fix diff --git a/nectl/__init__.py b/nectl/__init__.py index 6a51bbc..e08dc88 100644 --- a/nectl/__init__.py +++ b/nectl/__init__.py @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with Nectl. If not, see . -__version__ = "0.19.1" +__version__ = "0.19.2" __all__ = ["Nectl", "actions", "get_render_facts", "BaseDriver", "Host"] from .nectl import Nectl diff --git a/pyproject.toml b/pyproject.toml index 6fa9951..938a467 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nectl" -version = "0.19.1" +version = "0.19.2" description = "An end-to-end Python-based Infrastructure as Code framework for network automation and orchestration." authors = ["Adam Kirchberger "] readme = "README.md"