diff --git a/README.md b/README.md index ed6f917..ab62632 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ The features the plugin provides should be listed here. | NetBox Version | Plugin Version | |------------------|----------------| +| 4.1.x | 0.2.0 | | 4.0.5 | 0.1.0 | Minium version is 4.0.5 of netbox. Otherwise no changelog diff's will show up diff --git a/netbox_changelog_diff_plugin/__init__.py b/netbox_changelog_diff_plugin/__init__.py index d9f8b2e..b4c31c0 100644 --- a/netbox_changelog_diff_plugin/__init__.py +++ b/netbox_changelog_diff_plugin/__init__.py @@ -2,7 +2,7 @@ __author__ = """Jamie Murphy""" __email__ = "git@jam.ie" -__version__ = "0.1.0" +__version__ = "0.2.0" from netbox.plugins import PluginConfig @@ -12,7 +12,7 @@ class ChangeLogDiffConfig(PluginConfig): name = "netbox_changelog_diff_plugin" verbose_name = "NetBox ChangeLog Diff Plugin" description = "NetBox plugin for more detailed changlog diffs" - version = "version" + version = __version__ base_url = "netbox_changelog_diff_plugin" default_settings = { "change_log_format": "yaml", diff --git a/pyproject.toml b/pyproject.toml index 25f0148..cdc2db1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "netbox-changelog-diff-plugin" -version = "0.1.0" +version = "0.2.0" authors = [ {name = "Jamie Murphy", email = "git@jam.ie"}, ]