diff --git a/Dockerfile b/Dockerfile index 471710d..d7d3495 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM python:3.9-alpine -ARG version=2022.3.3 +ARG version=2022.8.1 MAINTAINER Eriks K LABEL version=$version diff --git a/compile.bat b/compile.bat index f917d93..8aaabbb 100644 --- a/compile.bat +++ b/compile.bat @@ -1 +1 @@ -pyinstaller --noupx -i favicon.ico -F -c --workpath work --add-data LICENSE;LICENSE.txt -n bot_v2022.3.3 ebot/__main__.py +pyinstaller --noupx -i favicon.ico -F -c --workpath work --add-data LICENSE;LICENSE.txt -n bot_v2022.8.1 ebot/__main__.py diff --git a/ebot/__init__.py b/ebot/__init__.py index 49dd7c8..0b9c1c9 100644 --- a/ebot/__init__.py +++ b/ebot/__init__.py @@ -2,7 +2,7 @@ __author__ = """Eriks K""" __email__ = "ebot@72.lv" -__version__ = "2022.3.3" +__version__ = "2022.8.1" __copyright__ = """ eBot Copyright (C) 2022 Eriks K diff --git a/setup.py b/setup.py index 3f3e523..69c6c66 100644 --- a/setup.py +++ b/setup.py @@ -33,6 +33,6 @@ setup( packages=find_packages(include=["ebot"]), python_requires=">=3.8, <4", setup_requires=requirements, - version="2022.3.3", + version="2022.8.1", zip_safe=False, )