Compare commits

..

3 Commits

Author SHA1 Message Date
skullY 7ce14c0f74 New release: 0.0.8 → 0.0.9 2019-07-15 11:26:51 -07:00
skullY 94831732c6 Set the twine username 2019-07-15 11:26:43 -07:00
skullY 819cbea904 Remove the link from description. 2019-07-15 11:26:27 -07:00
4 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
"""A program to help you work with qmk_firmware."""
__version__ = '0.0.8'
__version__ = '0.0.9'
+4 -2
View File
@@ -3,9 +3,11 @@
set -e
set -x
FLIT_USERNAME=${FLIT_USERNAME:=skully}
PYPI_USERNAME=${PYPI_USERNAME:=skully}
FLIT_USERNAME=$PYPI_USERNAME
TWINE_USERNAME=$PYPI_USERNAME
export FLIT_USERNAME
export FLIT_USERNAME TWINE_USERNAME
bumpversion patch
git push origin master --tags
+1 -1
View File
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.8
current_version = 0.0.9
commit = True
tag = True
tag_name = {new_version}
+1 -1
View File
@@ -8,7 +8,7 @@ metadata = setup_cfg['metadata']
if __name__ == "__main__":
setup(
name=metadata['dist-name'],
description='A program to help users work with [QMK Firmware](https://qmk.fm/).',
description='A program to help users work with QMK Firmware.',
entry_points={
'console_scripts': ['%s = %s' % l for l in setup_cfg['entry_points'].items()]
},