diff --git a/CHANGELOG.md b/CHANGELOG.md index 64003bf1..ff5e9606 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog -## v1.1.1 - 2022-09 +## v1.1.2 - 2022-08 + +### Changed + +- #322 Create release v1.1.2 and remove restrictions enforcing non-usage of beyond Nautobot 1.2. + +## v1.1.1 - 2022-08 ### Fixed diff --git a/nautobot_golden_config/__init__.py b/nautobot_golden_config/__init__.py index 96b62f73..2d0c453b 100644 --- a/nautobot_golden_config/__init__.py +++ b/nautobot_golden_config/__init__.py @@ -22,7 +22,7 @@ class GoldenConfig(PluginConfig): description = "A plugin for managing Golden Configurations." base_url = "golden-config" min_version = "1.2.0" - max_version = "1.3.99" + max_version = "1.99" default_settings = { "enable_backup": True, "enable_compliance": True, diff --git a/pyproject.toml b/pyproject.toml index bba0b810..8f99aef9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nautobot-golden-config" -version = "1.1.1" +version = "1.1.2" description = "A plugin for configuration on nautobot" authors = ["Network to Code, LLC", ""]