From 2f76ba0a9846f7512965a24748e8bb332fa0826a Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Wed, 25 Sep 2024 13:40:56 -0400 Subject: [PATCH] Release v0.5.1 --- docs/changelog.md | 1 + netbox_branching/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index d5957af..4d79fed 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -9,6 +9,7 @@ ### Bug Fixes +* [#98](https://github.com/netboxlabs/netbox-branching/issues/98) - Cable changes in branch should not impact main schema * [#119](https://github.com/netboxlabs/netbox-branching/issues/119) - Fix the dynamic selection of related objects in forms while a branch is active * [#120](https://github.com/netboxlabs/netbox-branching/issues/120) - `max_branches` config parameter should disregard archived branches * [#138](https://github.com/netboxlabs/netbox-branching/issues/138) - Fix rendering the ID column of the change diffs table diff --git a/netbox_branching/__init__.py b/netbox_branching/__init__.py index de903be..2d3054c 100644 --- a/netbox_branching/__init__.py +++ b/netbox_branching/__init__.py @@ -9,7 +9,7 @@ class AppConfig(PluginConfig): name = 'netbox_branching' verbose_name = 'NetBox Branching' description = 'A git-like branching implementation for NetBox' - version = '0.5.0' + version = '0.5.1' base_url = 'branching' min_version = '4.1' middleware = [ diff --git a/pyproject.toml b/pyproject.toml index f20d422..f1d8b91 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "netboxlabs-netbox-branching" -version = "0.5.0" +version = "0.5.1" description = "A git-like branching implementation for NetBox" readme = "README.md" requires-python = ">=3.10"