From 6df9e573aa66f051b75b319b655e1e672fa62b3a Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Mon, 20 Jul 2020 03:43:36 +0400 Subject: [PATCH] Updated version to 0.2.2 --- Makefile | 2 +- scrapthechan/__init__.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index f8cfffd..a8e2af3 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ build: scrapthechan README.md setup.cfg python setup.py sdist bdist_wheel install: - python -m pip install --upgrade dist/scrapthechan-0.2.1-py3-none-any.whl --user + python -m pip install --upgrade dist/scrapthechan-0.2.2-py3-none-any.whl --user uninstall: # We change directory so pip uninstall will run, it'll fail otherwise. @cd ~/ diff --git a/scrapthechan/__init__.py b/scrapthechan/__init__.py index e9163f8..9193b0c 100644 --- a/scrapthechan/__init__.py +++ b/scrapthechan/__init__.py @@ -1,5 +1,5 @@ -__date__ = "18 July 2020" -__version__ = "0.2.1" +__date__ = "20 July 2020" +__version__ = "0.2.2" __author__ = "Alexander \"Arav\" Andreev" __email__ = "me@arav.top" __copyright__ = f"Copyright (c) 2020 {__author__} <{__email__}>" @@ -9,5 +9,5 @@ For a copy see COPYING file in a directory of the program, or see """ VERSION = \ - f"ScrapTheChan ver. {__version__} ({__date__})\n\n{__copyright__}\n"\ + f"ScrapTheChan ver. {__version__} ({__date__})\n{__copyright__}\n"\ f"\n{__license__}"