Compare commits

..

3 Commits

Author SHA1 Message Date
QMK Bot 42fcfc3930 New release: 0.3.1 → 0.3.2 2021-08-12 17:22:35 +00:00
Zach White 60f2bb743d Move bumpversion config to .bumpversion.cfg
It seems that bumpversion only bumps the first match in a file,
with no way I can find to get around that. This works around the
problem so that bumpversion works in our setup.py-less world.
2021-08-12 10:18:13 -07:00
Zach White f8902bd258 fix setup.cfg version 2021-08-12 10:12:58 -07:00
3 changed files with 16 additions and 12 deletions
+12
View File
@@ -0,0 +1,12 @@
[bumpversion]
current_version = 0.3.2
commit = True
tag = True
tag_name = {new_version}
message = New release: {current_version} → {new_version}
[bumpversion:file:.bumpversion.cfg]
[bumpversion:file:qmk_cli/__init__.py]
[bumpversion:file:setup.cfg]
+1 -1
View File
@@ -1,3 +1,3 @@
"""A program to help you work with qmk_firmware."""
__version__ = '0.3.1'
__version__ = '0.3.2'
+3 -11
View File
@@ -1,13 +1,5 @@
[bumpversion]
current_version = 0.3.1
commit = True
tag = True
tag_name = {new_version}
message = New release: {current_version} → {new_version}
[bumpversion:file:qmk_cli/__init__.py]
[bumpversion:file:setup.cfg]
#[bumpversion]
# Bumpversion config has been moved to .bumpversion.cfg
[bdist_wheel]
universal = 1
@@ -17,7 +9,7 @@ ignore = E501,E226
[metadata]
name = qmk
version = 0.3.0
version = 0.3.2
author = skullydazed
author_email = skullydazed@gmail.com
description = A program to help users work with QMK Firmware.