diff --git a/CHANGELOG.md b/CHANGELOG.md index 01c3d31..102f140 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.7.0 (2024-06-19) + +* Adds support for Netbox 4.0 + ## 0.6.4 (2024-04-17) * Add documents for Virtual Machines - PR 54 (Thanks @felbinger) diff --git a/MANIFEST.in b/MANIFEST.in index 9099f7c..d7bfcd6 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,4 @@ include README.md include LICENSE +include requirements.txt recursive-include netbox_documents/templates * \ No newline at end of file diff --git a/README.md b/README.md index d44afe1..03cfadb 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ A plugin designed to faciliate the storage of site, circuit, device type and dev | NetBox Version | Plugin Version | |----------------|----------------| +| 4.0+ | 0.7.0 | | 3.6+ | 0.6.4 | | 3.5.x | 0.6.0 | | 3.3.x - 3.4.x | 0.5.1 | @@ -29,7 +30,7 @@ A plugin designed to faciliate the storage of site, circuit, device type and dev ## Installation -A working installation of Netbox 3.3+ is required. 3.6+ is recommended. **NOTE: Netbox 3.5 introduced breaking changes for plugins, please use the correct plugin version for your netbox install.** +A working installation of Netbox 4.0+ is required. **NOTE: Netbox 3.5 & 4.0 introduced breaking changes for plugins, please use the correct plugin version for your netbox install.** #### Package Installation from PyPi diff --git a/netbox_documents/__init__.py b/netbox_documents/__init__.py index 0d152a8..2369529 100644 --- a/netbox_documents/__init__.py +++ b/netbox_documents/__init__.py @@ -4,10 +4,10 @@ class NetboxDocuments(PluginConfig): name = 'netbox_documents' verbose_name = 'Document Storage' description = 'Manage site, location, circuit and device diagrams and documents in Netbox' - version = '0.6.4' + version = '0.7.0' author = 'Jason Yates' author_email = 'me@jasonyates.co.uk' - min_version = '3.5.0' + min_version = '4.0.0' base_url = 'documents' default_settings = { "enable_site_documents": True, diff --git a/setup.py b/setup.py index 3cafeec..a8f50c2 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name='netbox-documents', - version='0.6.4', + version='0.7.0', description='Manage site, location, circuit and device diagrams and documents in Netbox', long_description=long_description, long_description_content_type='text/markdown',