From 8935f8e6309e813455c8864625dd9a58b29b8cb0 Mon Sep 17 00:00:00 2001 From: "Michal Dziekonski (mdz)" Date: Wed, 1 May 2024 03:50:47 +0200 Subject: [PATCH] release: 1.0.2 (#39) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Dziekoński --- octoprint_Spoolman/SpoolmanPlugin.py | 13 +++++++++++++ octoprint_Spoolman/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/octoprint_Spoolman/SpoolmanPlugin.py b/octoprint_Spoolman/SpoolmanPlugin.py index 2ebf3f7..2502f97 100644 --- a/octoprint_Spoolman/SpoolmanPlugin.py +++ b/octoprint_Spoolman/SpoolmanPlugin.py @@ -135,5 +135,18 @@ def get_update_information(self): # update method: pip "pip": "https://github.com/mdziekon/octoprint-spoolman/archive/{target_version}.zip", + + "stable_branch": { + "name": "Stable", + "branch": "stable", + "comittish": ["stable"], + }, + "prerelease_branches": [ + { + "name": "Release candidate", + "branch": "rc", + "comittish": ["rc", "stable"], + }, + ] } } diff --git a/octoprint_Spoolman/__init__.py b/octoprint_Spoolman/__init__.py index 077209e..1fe288e 100644 --- a/octoprint_Spoolman/__init__.py +++ b/octoprint_Spoolman/__init__.py @@ -4,7 +4,7 @@ from .SpoolmanPlugin import SpoolmanPlugin __plugin_name__ = "Spoolman" -__plugin_version__ = "1.0.1" +__plugin_version__ = "1.0.2" __plugin_description__ = "Plugin integrating OctoPrint with Spoolman, a universal filament spools inventory manager." __plugin_pythoncompat__ = ">=3.7,<4" diff --git a/setup.py b/setup.py index 5e3abf5..78034ac 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ plugin_name = "octoprint-spoolman" # The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module -plugin_version = "1.0.1" +plugin_version = "1.0.2" # The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin # module