From a887c3230384c90186c4e9a61b4a86d415547038 Mon Sep 17 00:00:00 2001 From: Hanlin Miao Date: Fri, 29 Sep 2023 15:53:33 -0400 Subject: [PATCH 1/2] added the missing fix from v2.0.0 --- CHANGELOG.md | 6 ++++++ nautobot_secrets_providers/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a51bb8e..cfb2ca5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Nautobot Secrets Providers Changelog +## v2.0.1 (2023-09-29) + +### Added + +- [#112](https://github.com/nautobot/nautobot-plugin-secrets-providers/pull/112) Added the missing fix for [issue](https://github.com/nautobot/nautobot-plugin-secrets-providers/issues/91) that was not included for v2.0.0 + ## v2.0.0 (2023-09-23) ### Changed diff --git a/nautobot_secrets_providers/__init__.py b/nautobot_secrets_providers/__init__.py index 12e4c7c..ec1abf1 100644 --- a/nautobot_secrets_providers/__init__.py +++ b/nautobot_secrets_providers/__init__.py @@ -17,7 +17,7 @@ class NautobotSecretsProvidersConfig(NautobotAppConfig): description = "Nautobot App that provides direct integrations with Enterprise secrets management systems. Provides patterns to securely fetch secrets for use by other Nautobot Apps and Nautobot Jobs." base_url = "secrets" required_settings = [] - min_version = "2.0.0" + min_version = "2.0.1" max_version = "2.9999" default_settings = {} caching_config = {} diff --git a/pyproject.toml b/pyproject.toml index 8e3ba1a..666ac30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nautobot-secrets-providers" -version = "2.0.0" +version = "2.0.1" description = "Nautobot Secrets Providers App" authors = ["Network to Code, LLC "] license = "Apache-2.0" From 9489cebe9ec95ddf7035840aaf5d6804fe579bea Mon Sep 17 00:00:00 2001 From: Hanlin Miao <46973263+HanlinMiao@users.noreply.github.com> Date: Fri, 29 Sep 2023 15:56:21 -0400 Subject: [PATCH 2/2] Update nautobot_secrets_providers/__init__.py Co-authored-by: Glenn Matthews --- nautobot_secrets_providers/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nautobot_secrets_providers/__init__.py b/nautobot_secrets_providers/__init__.py index ec1abf1..12e4c7c 100644 --- a/nautobot_secrets_providers/__init__.py +++ b/nautobot_secrets_providers/__init__.py @@ -17,7 +17,7 @@ class NautobotSecretsProvidersConfig(NautobotAppConfig): description = "Nautobot App that provides direct integrations with Enterprise secrets management systems. Provides patterns to securely fetch secrets for use by other Nautobot Apps and Nautobot Jobs." base_url = "secrets" required_settings = [] - min_version = "2.0.1" + min_version = "2.0.0" max_version = "2.9999" default_settings = {} caching_config = {}