Compare commits

...

2 Commits

Author SHA1 Message Date
QMK Bot 78e0fda2f0 New release: 0.0.44 → 0.0.45 2021-03-28 23:43:02 +00:00
Zach White 9c6123483b housekeeping 2021-03-28 16:23:15 -07:00
4 changed files with 15 additions and 12 deletions
+10 -7
View File
@@ -1,5 +1,6 @@
# QMK CLI
[![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
@@ -8,15 +9,17 @@ A program to help users work with [QMK Firmware](https://qmk.fm/).
* Use `qmk clone` to pull down anyone's `qmk_firmware` fork
* Setup your build environment with `qmk setup`
* Check that your environment is correctly setup with `qmk doctor`
* Dispatches to `qmk_firmware/bin/qmk` for additional functionality:
* `qmk compile-json`
* More to come
* Integrates with your qmk_firmware for additional functionality:
* `qmk c2json`
* `qmk compile`
* `qmk flash`
* `qmk json2c`
* `qmk lint`
* `qmk new-keymap`
# Quickstart
Full documentation: <https://docs.qmk.fm/#/tutorial>
Basic steps:
* `python3 -m pip install qmk`
* `qmk setup`
Full documentation: <https://docs.qmk.fm/#/tutorial>
+1 -1
View File
@@ -1,3 +1,3 @@
"""A program to help you work with qmk_firmware."""
__version__ = '0.0.44'
__version__ = '0.0.45'
+1 -1
View File
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.44
current_version = 0.0.45
commit = True
tag = True
tag_name = {new_version}
+3 -3
View File
@@ -24,7 +24,7 @@ if __name__ == "__main__":
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
py_modules=['milc'],
py_modules=['qmk_cli'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
@@ -47,9 +47,9 @@ if __name__ == "__main__":
"flake8",
"hjson",
"jsonschema>=3",
"milc>=1.0.8",
"milc>=1.3.0",
"nose2",
"pygments",
"yapf"
],
]
)