Skip to content

Commit d48b08a

Browse files
committed
Release v0.7.0
1 parent 44450fc commit d48b08a

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

docs/changelog.md

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

3+
## v0.7.0
4+
5+
### Enhancements
6+
7+
* [#314](https://github.com/netboxlabs/netbox-branching/issues/314) - Include active branch in webhook payload data
8+
9+
### Bug Fixes
10+
11+
* [#308](https://github.com/netboxlabs/netbox-branching/issues/308) - Prevent branch change records from appearing in main changelog (NetBox v4.4)
12+
* [#309](https://github.com/netboxlabs/netbox-branching/issues/309) - Fix `ProgrammingError` exception when merging branch (NetBox v4.4)
13+
14+
---
15+
316
## v0.6.2
417

518
### Bug Fixes

netbox_branching/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ class AppConfig(PluginConfig):
1212
name = 'netbox_branching'
1313
verbose_name = 'NetBox Branching'
1414
description = 'A git-like branching implementation for NetBox'
15-
version = '0.6.2'
15+
version = '0.7.0'
1616
base_url = 'branching'
17-
min_version = '4.3.2'
18-
max_version = '4.3.99'
17+
min_version = '4.4.0'
18+
max_version = '4.4.99'
1919
middleware = [
2020
'netbox_branching.middleware.BranchMiddleware'
2121
]

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.6.2"
3+
version = "0.7.0"
44
description = "A git-like branching implementation for NetBox"
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)