Compare commits

...

2 Commits

Author SHA1 Message Date
skullY e8e98ca15a New release: 0.0.22 → 0.0.23 2019-11-15 22:21:33 -08:00
skullY 4d1302696e Make folding arguments into config operate more correctly. 2019-11-15 22:21:26 -08:00
3 changed files with 8 additions and 8 deletions
+6 -6
View File
@@ -501,12 +501,12 @@ class MILC(object):
if argument not in self.arg_only:
# Find the argument's section
argument_found = True
for group in self.default_arguments:
if argument in self.default_arguments[group]:
argument_found = True
section = group
break
if argument in self.default_arguments[self._entrypoint.__name__]:
argument_found = True
section = self._entrypoint.__name__
if argument in self.default_arguments['general']:
argument_found = True
section = 'general'
if not argument_found:
raise RuntimeError('Could not find argument in `self.default_arguments`. This should be impossible!')
+1 -1
View File
@@ -1,3 +1,3 @@
"""A program to help you work with qmk_firmware."""
__version__ = '0.0.22'
__version__ = '0.0.23'
+1 -1
View File
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.22
current_version = 0.0.23
commit = True
tag = True
tag_name = {new_version}