diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a6820513aabf03885af43dd703d12a5cb458937..1380abb15ee6e091321c42c82d310a82becea78f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.2.0 (2024-09-25) + +* Add support for Tags as AWX Groups + ## 0.1.0 (2024-05-03) * First release on PyPI. diff --git a/README.md b/README.md index b4eb6471719dd26aff231a2032750d3d3247ddca..b2dac4791be06cc263145ec8d56971b63ce9da87 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ The features the plugin provides should be listed here. | NetBox Version | Plugin Version | |----------------|----------------| | 3.7 | 0.1.0 | +| 3.7 | 0.2.0 | ## Installing diff --git a/netbox_awx_plugin/__init__.py b/netbox_awx_plugin/__init__.py index 2d9ee797c5c7a40b0c7f68789a5361b80ae292cf..79fe8dc573f9654c68eb5aed4e9c0fd51f8c19c2 100644 --- a/netbox_awx_plugin/__init__.py +++ b/netbox_awx_plugin/__init__.py @@ -2,7 +2,7 @@ __author__ = """Anders Harrisson""" __email__ = "anders.harrisson@gmail.com" -__version__ = "0.1.0" +__version__ = "0.2.0" from extras.plugins import PluginConfig diff --git a/pyproject.toml b/pyproject.toml index a154d72e9f7cbbef115ecf954250891bb7309f41..8b09cd9212a0dcb84b3340bc0750ff5f2de6fc34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "netbox-awx-plugin" -version = "0.1.0" +version = "0.2.0" authors = [ {name = "Anders Harrisson", email = "anders.harrisson@gmail.com"}, ]