Compare commits

...

5 Commits

Author SHA1 Message Date
Zach White 120ce557f1 New release: 0.0.30 → 0.0.31 2020-03-26 07:51:42 -07:00
Erovia a15b0d6460 Fix WinError 193 on MSYS2 2020-03-26 07:51:17 -07:00
skullY f0dafaf068 New release: 0.0.29 → 0.0.30 2020-03-10 11:37:44 -07:00
skullY 3414bdcaa3 add nose2 to requirements 2020-03-10 11:37:31 -07:00
Mikkel Jeppesen c8567d8098 Made bade in the readme nicer 2020-02-25 14:33:37 -08:00
5 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
# QMK CLI
![CLI Setup](https://github.com/qmk/qmk_cli/workflows/CLI%20Setup/badge.svg)
[![CLI Setup](https://github.com/qmk/qmk_cli/workflows/CLI%20Setup/badge.svg)](https://github.com/qmk/qmk_cli/actions?query=workflow%3A%22CLI+Setup%22)
A program to help users work with [QMK Firmware](https://qmk.fm/).
# Features
+1 -1
View File
@@ -1,3 +1,3 @@
"""A program to help you work with qmk_firmware."""
__version__ = '0.0.29'
__version__ = '0.0.31'
+1 -1
View File
@@ -30,7 +30,7 @@ def in_qmk_firmware():
while len(cur_dir.parents) > 0:
found_bin = cur_dir / 'bin' / 'qmk'
if found_bin.is_file():
command = [found_bin.as_posix(), '--version']
command = [sys.executable, found_bin.as_posix()]
result = subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
if result.returncode == 0:
+1 -1
View File
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.29
current_version = 0.0.31
commit = True
tag = True
tag_name = {new_version}
+1
View File
@@ -46,6 +46,7 @@ if __name__ == "__main__":
"colorama",
"flake8",
"hjson",
"nose2",
"yapf"
],
)