Skip to content

Commit

Permalink
release: 1.0.2 (#39)
Browse files Browse the repository at this point in the history
Signed-off-by: Michał Dziekoński <[email protected]>
  • Loading branch information
mdziekon authored May 1, 2024
1 parent 485728b commit 8935f8e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions octoprint_Spoolman/SpoolmanPlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
},
]
}
}
2 changes: 1 addition & 1 deletion octoprint_Spoolman/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8935f8e

Please sign in to comment.