Skip to content

Commit

Permalink
v0.3.0 for NetBox 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
arthanson committed Sep 3, 2024
1 parent 6c6cea8 commit e9902a3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ The features the plugin provides should be listed here.
| 3.5 | 0.1.0 |
| 3.5.8 | 0.1.4 |
| 3.6.0 | 0.1.5 |
| < 3.7.6 | 0.1.7 |
| >= 4.0.2 | 0.2.1 |
| 3.7.6 | 0.1.7 |
| < 4.0.11 | 0.2.1 |
| >= 4.1.0 | 0.3.0 |

## Installation

Expand Down
4 changes: 2 additions & 2 deletions netbox_napalm_plugin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Arthur Hanson"""
__email__ = "[email protected]"
__version__ = "0.2.1"
__version__ = "0.3.0"


from netbox.plugins import PluginConfig
Expand All @@ -22,7 +22,7 @@ class NapalmPlatformConfig(PluginConfig):
'NAPALM_ARGS': {},
}
min_version = '4.0.2'
max_version = '4.0.99'
max_version = '4.1.99'


config = NapalmPlatformConfig
2 changes: 1 addition & 1 deletion netbox_napalm_plugin/api/serializers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from dcim.api.serializers import NestedPlatformSerializer
from dcim.api.nested_serializers import NestedPlatformSerializer
from netbox.api.serializers import NetBoxModelSerializer
from rest_framework import serializers

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "netbox-napalm-plugin"
version = "0.2.1"
version = "0.3.0"
authors = [
{name = "Arthur Hanson", email = "[email protected]"},
]
Expand Down

0 comments on commit e9902a3

Please sign in to comment.