Fix authorship and version.

master
blallo 2019-09-04 12:38:35 +02:00 committed by blallo
parent fae15e5737
commit ce72d587e6
Signed by: blallo
GPG Key ID: 0CBE577C9B72DC3F
3 changed files with 15 additions and 5 deletions

View File

@ -4,6 +4,11 @@ FROM selenium/standalone-firefox AS ff
FROM python:3.7-buster FROM python:3.7-buster
LABEL author="Blallo"
LABEL email="blallo@autistici.org"
LABEL io.troubles.botz.release-date="2019-09-04"
LABEL io.troubles.botz.version="1.0.0"
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
COPY --from=node /usr/local /usr/local COPY --from=node /usr/local /usr/local

View File

@ -4,4 +4,4 @@
__author__ = """Blallo""" __author__ = """Blallo"""
__email__ = "blallo@autistici.org" __email__ = "blallo@autistici.org"
__version__ = "0.1.0" __version__ = "1.0.0"

View File

@ -2,14 +2,19 @@
current_version = 1.0.0 current_version = 1.0.0
commit = True commit = True
tag = True tag = True
sign_tags = True
[bumpversion:file:setup.py] [bumpversion:file:setup.py]
search = version='{current_version}' search = VERSION = "{current_version}"
replace = version='{new_version}' replace = VERSION = "{new_version}"
[bumpversion:file:bot_z/__init__.py] [bumpversion:file:bot_z/__init__.py]
search = __version__ = '{current_version}' search = __version__ = "{current_version}"
replace = __version__ = '{new_version}' replace = __version__ = "{new_version}"
[bumpversion:file:Dockerfile]
search = LABEL io.troubles.botz.version="{current_version}"
replace = LABEL io.troubles.botz.version="{new_version}"
[bdist_wheel] [bdist_wheel]
universal = 0 universal = 0