From 1158ef6d35edd30b58d621f5ac88d43bb3fd5cfd Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Fri, 16 Aug 2024 15:41:39 -0400 Subject: [PATCH] Release v0.3.1 --- docs/changelog.md | 13 +++++++++++++ netbox_branching/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index a1de8e4..cea51f1 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,16 @@ # Change Log +## v0.3.1 + +### Bug Fixes + +* [#42](https://github.com/netboxlabs/nbl-netbox-branching/issues/42) - Fix exception raised when viewing custom scripts +* [#44](https://github.com/netboxlabs/nbl-netbox-branching/issues/44) - Handle truncated SQL sequence names to avoid exceptions during branch provisioning +* [#48](https://github.com/netboxlabs/nbl-netbox-branching/issues/48) - Ensure background job is terminated in the event branch provisioning errors +* [#50](https://github.com/netboxlabs/nbl-netbox-branching/issues/50) - Branch state should remain as "merged" after dry-run revert + +--- + ## v0.3.0 ### Enhancements @@ -22,6 +33,8 @@ * [#30](https://github.com/netboxlabs/nbl-netbox-branching/issues/30) - Include only unmerged branches with relevant changes in object view notifications * [#31](https://github.com/netboxlabs/nbl-netbox-branching/issues/31) - Prevent the deletion of a branch in a transitional state +--- + ## v0.2.0 * Initial private release diff --git a/netbox_branching/__init__.py b/netbox_branching/__init__.py index fc37369..ba35dd7 100644 --- a/netbox_branching/__init__.py +++ b/netbox_branching/__init__.py @@ -5,7 +5,7 @@ class AppConfig(PluginConfig): name = 'netbox_branching' verbose_name = 'NetBox Branching' description = 'A git-like branching implementation for NetBox' - version = '0.3.0' + version = '0.3.1' base_url = 'branching' min_version = '4.1' middleware = [ diff --git a/pyproject.toml b/pyproject.toml index 4c27b61..a858bf6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "netboxlabs-netbox-branching" -version = "0.3.0" +version = "0.3.1" description = "A git-like branching implementation for NetBox" readme = "README.md" requires-python = ">=3.10"