Skip to content

Commit 1158ef6

Browse files
committed
Release v0.3.1
1 parent dbf852a commit 1158ef6

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

docs/changelog.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Change Log
22

3+
## v0.3.1
4+
5+
### Bug Fixes
6+
7+
* [#42](https://github.com/netboxlabs/nbl-netbox-branching/issues/42) - Fix exception raised when viewing custom scripts
8+
* [#44](https://github.com/netboxlabs/nbl-netbox-branching/issues/44) - Handle truncated SQL sequence names to avoid exceptions during branch provisioning
9+
* [#48](https://github.com/netboxlabs/nbl-netbox-branching/issues/48) - Ensure background job is terminated in the event branch provisioning errors
10+
* [#50](https://github.com/netboxlabs/nbl-netbox-branching/issues/50) - Branch state should remain as "merged" after dry-run revert
11+
12+
---
13+
314
## v0.3.0
415

516
### Enhancements
@@ -22,6 +33,8 @@
2233
* [#30](https://github.com/netboxlabs/nbl-netbox-branching/issues/30) - Include only unmerged branches with relevant changes in object view notifications
2334
* [#31](https://github.com/netboxlabs/nbl-netbox-branching/issues/31) - Prevent the deletion of a branch in a transitional state
2435

36+
---
37+
2538
## v0.2.0
2639

2740
* Initial private release

netbox_branching/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class AppConfig(PluginConfig):
55
name = 'netbox_branching'
66
verbose_name = 'NetBox Branching'
77
description = 'A git-like branching implementation for NetBox'
8-
version = '0.3.0'
8+
version = '0.3.1'
99
base_url = 'branching'
1010
min_version = '4.1'
1111
middleware = [

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "netboxlabs-netbox-branching"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = "A git-like branching implementation for NetBox"
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)