Skip to content

Commit

Permalink
SW-1877 stable release v0.2.0 (#50)
Browse files Browse the repository at this point in the history
The use of versioneer to automatically update version strings
  • Loading branch information
Josef-MrBeam authored Nov 22, 2022
1 parent 001eceb commit fb6e0db
Show file tree
Hide file tree
Showing 15 changed files with 3,061 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
octoprint_netconnectd/_version.py export-subst
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ recursive-include octoprint_netconnectd/translations *
include LICENSE
include requirements.txt
include README.md
include versioneer.py
include octoprint_netconnectd/_version.py
graft octoprint_netconnectd/scripts
5 changes: 5 additions & 0 deletions octoprint_netconnectd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,3 +374,8 @@ def __plugin_load__():
global __plugin_implementation__
__plugin_implementation__ = NetconnectdSettingsPlugin()
return True


from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
1 change: 1 addition & 0 deletions octoprint_netconnectd/__version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.1.10" #TODO fix with versioneer
Loading

0 comments on commit fb6e0db

Please sign in to comment.