From e7c9bb1e2c95e34cb548737031b6259186a3ae63 Mon Sep 17 00:00:00 2001
From: jasonyates-thg <jasonyates07@googlemail.com>
Date: Thu, 4 May 2023 20:40:44 +0100
Subject: [PATCH] Bump version

---
 CHANGELOG.md                 | 4 ++++
 README.md                    | 2 +-
 netbox_documents/__init__.py | 2 +-
 setup.py                     | 2 +-
 4 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index f9da935..a3f237e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Changelog
 
+## 0.5.1 (2023-05-04)
+
+* Patch for Netbox 3.2 - 3.3 where PluginMenu does not exist yet
+
 ## 0.5.0 (2023-01-24)
 
 * Fix API Filtersets
diff --git a/README.md b/README.md
index 5c19090..f5aa6a5 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ A plugin designed to faciliate the storage of site, circuit, device type and dev
 
 | NetBox Version | Plugin Version |
 |----------------|----------------|
-|     3.2+       |      0.5.0     |
+|     3.2+       |      0.5.1     |
 
 
 ## Installation
diff --git a/netbox_documents/__init__.py b/netbox_documents/__init__.py
index fb85577..07e80fa 100644
--- a/netbox_documents/__init__.py
+++ b/netbox_documents/__init__.py
@@ -4,7 +4,7 @@ class NetboxDocuments(PluginConfig):
     name = 'netbox_documents'
     verbose_name = 'Document Storage'
     description = 'Manage site, circuit and device diagrams and documents in Netbox'
-    version = '0.5.0'
+    version = '0.5.1'
     author = 'Jason Yates'
     author_email = 'me@jasonyates.co.uk'
     min_version = '3.2.0'
diff --git a/setup.py b/setup.py
index 814c7ec..f83a6e4 100644
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@
 
 setup(
     name='netbox-documents',
-    version='0.5.0',
+    version='0.5.1',
     description='Manage site, circuit and device diagrams and documents in Netbox',
     long_description=long_description,
     long_description_content_type='text/markdown',