diff --git a/README.md b/README.md index 777b827..54201a1 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/netbox_plugin_reloader/__init__.py b/netbox_plugin_reloader/__init__.py index c71daf7..acc6eb2 100644 --- a/netbox_plugin_reloader/__init__.py +++ b/netbox_plugin_reloader/__init__.py @@ -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): """ @@ -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 diff --git a/netbox_plugin_reloader/version.py b/netbox_plugin_reloader/version.py index 8af6e9c..2314a81 100644 --- a/netbox_plugin_reloader/version.py +++ b/netbox_plugin_reloader/version.py @@ -1,3 +1,3 @@ """Version information.""" -__version__ = "4.3.1" +__version__ = "4.4.0"