Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ A NetBox plugin that dynamically reloads plugins without requiring a server rest
|----------------|---------------|
| 4.2.x | 0.0.2 |
| 4.3.x | 4.3.x |
| 4.4.x | 4.4.x |


**Version Format**: X.X.Y where X.X = NetBox version (e.g., 4.3) and Y = plugin version increment

Expand Down
8 changes: 4 additions & 4 deletions netbox_plugin_reloader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ class NetboxPluginReloaderConfig(PluginConfig):
description = "Dynamically reload NetBox plugins without server restart"
version = __version__
base_url = "netbox-plugin-reloader"
min_version = "4.3.0"
max_version = "4.3.99"
min_version = "4.4.0"
max_version = "4.4.99"

def ready(self):
"""
Expand All @@ -31,8 +31,8 @@ def ready(self):
"""
super().ready()

from core.models import ObjectType
from django.apps import apps
from core.models.object_types import ObjectType
from django.apps.registry import apps
from django.conf import settings
from django.utils.translation import gettext_lazy as _
from extras.forms.model_forms import CustomFieldForm, TagForm
Expand Down
2 changes: 1 addition & 1 deletion netbox_plugin_reloader/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version information."""

__version__ = "4.3.1"
__version__ = "4.4.0"