From c5e02c749a07b8b21926558f524ca99604bfbee2 Mon Sep 17 00:00:00 2001 From: Eriks K <2445149-keriks@users.noreply.gitlab.com> Date: Tue, 16 Aug 2022 21:55:40 +0300 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=20New=20version=20-=202022.8.1=20?= =?UTF-8?q?=E2=AC=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- compile.bat | 2 +- ebot/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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, )