Compare commits

...

2 Commits

Author SHA1 Message Date
skullY 9cab9ea610 New release: 0.0.20 → 0.0.21 2019-11-11 13:04:13 -08:00
skullY 177fa55bce fix pytest in qmkfm/base_container 2019-11-11 13:03:39 -08:00
4 changed files with 8 additions and 4 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
"""A program to help you work with qmk_firmware."""
__version__ = '0.0.20'
__version__ = '0.0.21'
+4 -1
View File
@@ -56,7 +56,10 @@ def find_qmk_firmware():
return Path(milc.cli.config.user.qmk_home).expanduser().resolve()
if 'QMK_HOME' in os.environ:
return Path(os.environ['QMK_HOME']).expanduser().resolve()
path = Path(os.environ['QMK_HOME']).expanduser()
if path.exists():
return path.resolve()
return path
return Path.home() / 'qmk_firmware'
+1 -1
View File
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.20
current_version = 0.0.21
commit = True
tag = True
tag_name = {new_version}
+2 -1
View File
@@ -44,6 +44,7 @@ if __name__ == "__main__":
"appdirs",
"argcomplete",
"colorama",
"hjson"
"hjson",
"yapf"
],
)