diff --git a/octoprint_filamentreload/__init__.py b/octoprint_filamentreload/__init__.py index b96098e..9fa0cd3 100644 --- a/octoprint_filamentreload/__init__.py +++ b/octoprint_filamentreload/__init__.py @@ -76,7 +76,7 @@ def get_update_information(self): ) __plugin_name__ = "Filament Sensor Reloaded" -__plugin_version__ = "1.0.0" +__plugin_version__ = "1.0.1" def __plugin_load__(): global __plugin_implementation__ diff --git a/setup.py b/setup.py index 0bff938..fd0d1ed 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ plugin_name = "Octoprint-FilamentReload" # The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module -plugin_version = "1.0.0" +plugin_version = "1.0.1" # The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin # module @@ -33,7 +33,7 @@ plugin_license = "AGPLv3" # Any additional requirements besides OctoPrint should be listed here -plugin_requires = [] +plugin_requires = ['RPi.GPIO'] ### -------------------------------------------------------------------------------------------------------------------- ### More advanced options that you usually shouldn't have to touch follow after this point