File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ A NetBox plugin that dynamically reloads plugins without requiring a server rest
1616| ----------------| ---------------|
1717| 4.2.x | 0.0.2 |
1818| 4.3.x | 4.3.x |
19+ | 4.4.x | 4.4.x |
20+
1921
2022** Version Format** : X.X.Y where X.X = NetBox version (e.g., 4.3) and Y = plugin version increment
2123
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ class NetboxPluginReloaderConfig(PluginConfig):
2020 description = "Dynamically reload NetBox plugins without server restart"
2121 version = __version__
2222 base_url = "netbox-plugin-reloader"
23- min_version = "4.3 .0"
24- max_version = "4.3 .99"
23+ min_version = "4.4 .0"
24+ max_version = "4.4 .99"
2525
2626 def ready (self ):
2727 """
@@ -31,8 +31,8 @@ def ready(self):
3131 """
3232 super ().ready ()
3333
34- from core .models import ObjectType
35- from django .apps import apps
34+ from core .models . object_types import ObjectType
35+ from django .apps . registry import apps
3636 from django .conf import settings
3737 from django .utils .translation import gettext_lazy as _
3838 from extras .forms .model_forms import CustomFieldForm , TagForm
Original file line number Diff line number Diff line change 11"""Version information."""
22
3- __version__ = "4.3.1 "
3+ __version__ = "4.4.0 "
You can’t perform that action at this time.
0 commit comments