Skip to content

Commit

Permalink
Merge pull request #63 from jasonyates/40-support
Browse files Browse the repository at this point in the history
Release prep for 4.0 support
  • Loading branch information
jasonyates authored Jun 19, 2024
2 parents 086bee9 + 6db26c8 commit aaca405
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include README.md
include LICENSE
include requirements.txt
recursive-include netbox_documents/templates *
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,15 @@ 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 |


## 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

Expand Down
4 changes: 2 additions & 2 deletions netbox_documents/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '[email protected]'
min_version = '3.5.0'
min_version = '4.0.0'
base_url = 'documents'
default_settings = {
"enable_site_documents": True,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit aaca405

Please sign in to comment.