From a0221d7079ea246152f4a430220e7c18a13e41ae Mon Sep 17 00:00:00 2001 From: Sergey Totmyanin Date: Fri, 23 Jul 2021 14:55:49 +0300 Subject: [PATCH] Bump version to 0.4.0 --- setup.py | 4 ++-- unicaps/__version__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 03cb3cf..3ebe2a0 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="unicaps", - version="0.3.2", + version="0.4.0", author="Sergey Totmyanin", author_email="STotmyanin@gmail.com", description="Universal CAPTCHA Solver for humans", @@ -15,7 +15,7 @@ packages=setuptools.find_packages(), install_requires=["requests>=2.21.0", "dataclasses>=0.7; python_version == '3.6'"], classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", diff --git a/unicaps/__version__.py b/unicaps/__version__.py index 9f99e97..13ad3d3 100644 --- a/unicaps/__version__.py +++ b/unicaps/__version__.py @@ -3,7 +3,7 @@ __title__ = 'unicaps' __description__ = 'Python CAPTCHA solving for Humans.' __url__ = 'https://github.com/sergey-scat/unicaps' -__version__ = '0.3.2' +__version__ = '0.4.0' __author__ = 'Sergey Totmyanin' __license__ = 'Apache 2.0' __copyright__ = 'Copyright 2020-2021 Sergey Totmyanin'