Skip to content

Commit f2c3cf5

Browse files
authored
Merge pull request #217 from netbox-community/develop
Release v0.14.0
2 parents 721342d + 93b2e05 commit f2c3cf5

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ This plugin provide following Models:
1717
| NetBox 3.6.x | >= 0.11.0 |
1818
| NetBox 3.7.x | >= 0.12.0 |
1919
| NetBox 4.0.x | >= 0.13.3 |
20+
| NetBox 4.1.x | >= 0.14.0 |
2021

2122
## Installation
2223

develop/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG python_ver=3.12
22
FROM python:${python_ver}
33

4-
ARG netbox_ver=v4.0.11
4+
ARG netbox_ver=v4.1.3
55
ENV PYTHONUNBUFFERED 1
66

77
RUN mkdir -p /opt

develop/docker-compose.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
---
2-
version: '3'
32
services:
43
netbox:
54
build:
@@ -33,7 +32,7 @@ services:
3332
- ../netbox_bgp:/source/netbox_bgp
3433
tty: true
3534
postgres:
36-
image: postgres:12
35+
image: postgres:16
3736
env_file: dev.env
3837
volumes:
3938
- pgdata_netbox_bgp:/var/lib/postgresql/data

netbox_bgp/__init__.py

+2-2
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.0.0'
15-
max_version = '4.0.99'
14+
min_version = '4.1.0'
15+
max_version = '4.1.99'
1616
default_settings = {
1717
'device_ext_page': 'right',
1818
'top_level_menu' : False,

netbox_bgp/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.13.3"
1+
__version__ = "0.14.0"

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ def get_version(rel_path):
2929
description='BGP related stuff',
3030
long_description=long_description,
3131
long_description_content_type="text/markdown",
32-
url='https://github.com/k01ek/netbox-bgp',
32+
url='https://github.com/netbox-community/netbox-bgp',
3333
author='Nikolay Yuzefovich',
3434
author_email='[email protected]',
3535
install_requires=[],
3636
packages=find_packages(),
3737
include_package_data=True,
3838
classifiers=[
39-
'Development Status :: 2 - Pre-Alpha',
39+
'Development Status :: 5 - Production/Stable',
4040
'License :: OSI Approved :: Apache Software License',
4141
'Framework :: Django',
4242
'Programming Language :: Python :: 3',

0 commit comments

Comments
 (0)