Compare commits

..

2 Commits

Author SHA1 Message Date
QMK Bot 51e80c2f52 New release: 0.2.1 → 0.2.2 2021-07-16 20:08:42 +00:00
Zach White 567ef9637e fix the docker build 2021-07-16 13:06:44 -07:00
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
FROM qmkfm/base_container FROM qmkfm/base_container
# Copy package in # Copy package in
COPY dist /tmp ADD dist /tmp/dist
# Install python packages # Install python packages
RUN python3 -m pip uninstall qmk || true RUN python3 -m pip uninstall -y qmk || true
RUN python3 -m pip install --upgrade pip setuptools wheel nose2 && \ RUN python3 -m pip install --upgrade pip setuptools wheel nose2 && \
python3 -m pip install /tmp/dist/qmk-*.whl && \ python3 -m pip install /tmp/dist/qmk-*.whl && \
rm -rf /tmp/dist rm -rf /tmp/dist
+1 -1
View File
@@ -1,3 +1,3 @@
"""A program to help you work with qmk_firmware.""" """A program to help you work with qmk_firmware."""
__version__ = '0.2.1' __version__ = '0.2.2'
+1 -1
View File
@@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 0.2.1 current_version = 0.2.2
commit = True commit = True
tag = True tag = True
tag_name = {new_version} tag_name = {new_version}