From 78fc46a1eb63e7dea2817e4a43f7c42d38036a64 Mon Sep 17 00:00:00 2001 From: Tobias Genannt Date: Fri, 16 Jun 2023 17:27:37 +0200 Subject: [PATCH] Prepare version 3.5.1 --- README.md | 2 +- pyproject.toml | 2 +- src/netbox_initializers/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fdba3bc..65aee8e 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,6 @@ The initializers where a part of the Docker image and where then extracted into To use the new plugin in a the Netbox Docker image, it musst be installad into the image. To this, the following example can be used as a starting point: ```dockerfile -FROM netboxcommunity/netbox:v3.4 +FROM netboxcommunity/netbox:v3.5 RUN /opt/netbox/venv/bin/pip install "netbox-initializers==3.5.*" ``` diff --git a/pyproject.toml b/pyproject.toml index 58bba59..4746899 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ license = "Apache-2.0" name = "netbox-initializers" readme = "README.md" repository = "https://github.com/tobiasge/netbox-initializers" -version = "3.5.0" +version = "3.5.1" [tool.poetry.dependencies] python = "^3.8" diff --git a/src/netbox_initializers/__init__.py b/src/netbox_initializers/__init__.py index 9fbe295..6ac86e5 100644 --- a/src/netbox_initializers/__init__.py +++ b/src/netbox_initializers/__init__.py @@ -5,7 +5,7 @@ class NetBoxInitializersConfig(PluginConfig): name = "netbox_initializers" verbose_name = "NetBox Initializers" description = "Load initial data into Netbox" - version = "3.5.0" + version = "3.5.1" base_url = "initializers" min_version = "3.5.0" max_version = "3.5.99"