Skip to content

Commit 98a1315

Browse files
authored
Merge pull request #253 from cruse1977/develop
Release Prep - 0.16.0
2 parents 51d585c + 091e8ea commit 98a1315

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @k01ek @cruse1977 @natm
1+
* @k01ek @cruse1977

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
This plugin provide following Models:
66
* BGP Communities
77
* BGP Sessions
8+
* BGP Peer Groups
89
* Routing Policy
910
* Prefix Lists
1011

@@ -19,6 +20,7 @@ This plugin provide following Models:
1920
| NetBox 4.0.x | >= 0.13.3 |
2021
| NetBox 4.1.x | >= 0.14.0 |
2122
| NetBox 4.2.x | 0.15.x |
23+
| NetBox 4.3.x | 0.16.x |
2224

2325
## Installation
2426

netbox-plugin.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
version: 0.1
22
package_name: netbox-bgp
33
compatibility:
4+
- release: 0.16.0
5+
netbox_min: 4.3.0
6+
netbox_max: 4.3.1
47
- release: 0.15.0
58
netbox_min: 4.2.0
6-
netbox_max: 4.2.1
9+
netbox_max: 4.2.9
710
- release: 0.14.0
811
netbox_min: 4.1.0
912
netbox_max: 4.1.11

netbox_bgp/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ class BGPConfig(PluginConfig):
1111
author_email = '[email protected]'
1212
base_url = 'bgp'
1313
required_settings = []
14-
# min_version = '4.2.0'
15-
# max_version = '4.2.99'
14+
min_version = '4.3.0'
15+
max_version = '4.3.99'
1616
default_settings = {
1717
'device_ext_page': 'right',
1818
'top_level_menu' : False,

netbox_bgp/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.15.0"
1+
__version__ = "0.16.0"

0 commit comments

Comments
 (0)