Compare commits

...

6 Commits

Author SHA1 Message Date
QMK Bot c41fd5e940 New release: 0.0.51 → 0.0.52 2021-06-22 05:21:24 +00:00
Zach White b70736a876 add vscode settings 2021-06-21 22:14:55 -07:00
Zach White 69b3b890d2 check for __init__ instead of doctor 2021-06-21 22:14:38 -07:00
QMK Bot 8b30a9766d New release: 0.0.50 → 0.0.51 2021-05-27 02:16:09 +00:00
Zach White 982349a450 move the yesno import to after the set_metadata call 2021-05-26 19:00:16 -07:00
Zach White 4d161c9ec4 fix qmk config 2021-05-26 17:55:15 -07:00
5 changed files with 10 additions and 5 deletions
+3
View File
@@ -0,0 +1,3 @@
{
"python.formatting.provider": "yapf"
}
+1 -1
View File
@@ -1,3 +1,3 @@
"""A program to help you work with qmk_firmware."""
__version__ = '0.0.50'
__version__ = '0.0.52'
+1 -1
View File
@@ -16,7 +16,7 @@ def is_qmk_firmware(qmk_firmware):
qmk_firmware / 'quantum',
qmk_firmware / 'requirements.txt',
qmk_firmware / 'requirements-dev.txt',
qmk_firmware / 'lib/python/qmk/cli/doctor.py'
qmk_firmware / 'lib/python/qmk/cli/__init__.py'
]
for path in paths:
+4 -2
View File
@@ -11,8 +11,6 @@ from platform import platform
from traceback import print_exc
import milc
import milc.subcommand.config # noqa
from milc.questions import yesno
from . import __version__
from .helpers import find_qmk_firmware, is_qmk_firmware
@@ -20,6 +18,10 @@ from .helpers import find_qmk_firmware, is_qmk_firmware
milc.set_metadata(version=__version__)
milc.EMOJI_LOGLEVELS['INFO'] = '{fg_blue}Ψ{style_reset_all}'
# These must happen after the milc.set_metadata() call
import milc.subcommand.config # noqa, must come after milc.set_metadata()
from milc.questions import yesno
@milc.cli.entrypoint('CLI wrapper for running QMK commands.')
def qmk_main(cli):
+1 -1
View File
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.50
current_version = 0.0.52
commit = True
tag = True
tag_name = {new_version}