Skip to content

Commit

Permalink
Merge pull request #217 from netbox-community/develop
Browse files Browse the repository at this point in the history
Release v0.14.0
  • Loading branch information
cruse1977 authored Oct 7, 2024
2 parents 721342d + 93b2e05 commit f2c3cf5
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ This plugin provide following Models:
| NetBox 3.6.x | >= 0.11.0 |
| NetBox 3.7.x | >= 0.12.0 |
| NetBox 4.0.x | >= 0.13.3 |
| NetBox 4.1.x | >= 0.14.0 |

## Installation

Expand Down
2 changes: 1 addition & 1 deletion develop/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG python_ver=3.12
FROM python:${python_ver}

ARG netbox_ver=v4.0.11
ARG netbox_ver=v4.1.3
ENV PYTHONUNBUFFERED 1

RUN mkdir -p /opt
Expand Down
3 changes: 1 addition & 2 deletions develop/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---
version: '3'
services:
netbox:
build:
Expand Down Expand Up @@ -33,7 +32,7 @@ services:
- ../netbox_bgp:/source/netbox_bgp
tty: true
postgres:
image: postgres:12
image: postgres:16
env_file: dev.env
volumes:
- pgdata_netbox_bgp:/var/lib/postgresql/data
Expand Down
4 changes: 2 additions & 2 deletions netbox_bgp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ class BGPConfig(PluginConfig):
author_email = '[email protected]'
base_url = 'bgp'
required_settings = []
min_version = '4.0.0'
max_version = '4.0.99'
min_version = '4.1.0'
max_version = '4.1.99'
default_settings = {
'device_ext_page': 'right',
'top_level_menu' : False,
Expand Down
2 changes: 1 addition & 1 deletion netbox_bgp/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.13.3"
__version__ = "0.14.0"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ def get_version(rel_path):
description='BGP related stuff',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/k01ek/netbox-bgp',
url='https://github.com/netbox-community/netbox-bgp',
author='Nikolay Yuzefovich',
author_email='[email protected]',
install_requires=[],
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Framework :: Django',
'Programming Language :: Python :: 3',
Expand Down

0 comments on commit f2c3cf5

Please sign in to comment.