Skip to content

Commit

Permalink
Merge pull request #109 from nautobot/u/hanlin-prepare-for-2.0
Browse files Browse the repository at this point in the history
Preparation for 2.0 release
  • Loading branch information
HanlinMiao authored Sep 29, 2023
2 parents 0f3f212 + 609af14 commit 301f028
Show file tree
Hide file tree
Showing 7 changed files with 483 additions and 461 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
fail-fast: true
matrix:
python-version: ["3.8"]
nautobot-version: ["2.0.0-rc.2"]
nautobot-version: ["2.0.0"]
env:
INVOKE_NAUTOBOT_SECRETS_PROVIDERS_PYTHON_VER: "${{ matrix.python-version }}"
INVOKE_NAUTOBOT_SECRETS_PROVIDERS_NAUTOBOT_VER: "${{ matrix.nautobot-version }}"
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
# TBD: Fix tested versions
# python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8"]
nautobot-version: ["2.0.0-rc.2"]
nautobot-version: ["2.0.0"]
db-backend: ["postgresql", "mysql"]
runs-on: "ubuntu-20.04"
env:
Expand Down
4 changes: 2 additions & 2 deletions development/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# -------------------------------------------------------------------------------------
# !!! USE CAUTION WHEN MODIFYING LINES BELOW

# Accepts a desired Nautobot version as build argument, default to `2.0.0-rc.2`
ARG NAUTOBOT_VER="2.0.0-rc.2"
# Accepts a desired Nautobot version as build argument, default to `2.0.0`
ARG NAUTOBOT_VER="2.0.0"

# Accepts a desired Python version as build argument, default to 3.8
ARG PYTHON_VER="3.8"
Expand Down
2 changes: 1 addition & 1 deletion invoke.example.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
nautobot_secrets_providers:
project_name: "nautobot-secrets-providers"
nautobot_ver: "2.0.0-rc.2"
nautobot_ver: "2.0.0"
local: false
python_ver: "3.8"
compose_dir: "development"
Expand Down
2 changes: 1 addition & 1 deletion nautobot_secrets_providers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.0rc2"
min_version = "2.0.0"
max_version = "2.9999"
default_settings = {}
caching_config = {}
Expand Down
928 changes: 475 additions & 453 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ packages = [
[tool.poetry.dependencies]
boto3 = { version = "~1.19.5", optional = true }
hvac = { version = ">=0.11.0, <1.1.0", optional = true }
nautobot = { version = ">=2.0.0rc1,<2.0.0rc99", optional = true, allow-prereleases = true }
nautobot = "^2.0.0"
python = ">=3.8,<3.12"
python-tss-sdk = {version = "~1.2.0", optional = true}

Expand Down
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def is_truthy(arg):
namespace.configure(
{
"nautobot_secrets_providers": {
"nautobot_ver": "2.0.0-rc.2",
"nautobot_ver": "2.0.0",
"project_name": "nautobot_secrets_providers",
"python_ver": "3.8",
"local": False,
Expand Down

0 comments on commit 301f028

Please sign in to comment.