From 48896f2875d29edbdd0a746424d1ca22e02d5e55 Mon Sep 17 00:00:00 2001 From: Ali Aliyev Date: Tue, 21 Mar 2023 09:46:04 +0400 Subject: [PATCH] Bump version: 1.5.1 -> 1.5.2 --- aioauth/__version__.py | 2 +- setup.cfg | 9 --------- setup.py | 1 - 3 files changed, 1 insertion(+), 11 deletions(-) diff --git a/aioauth/__version__.py b/aioauth/__version__.py index cc92ee9..a08af8b 100644 --- a/aioauth/__version__.py +++ b/aioauth/__version__.py @@ -1,7 +1,7 @@ __title__ = "aioauth" __description__ = "Asynchronous OAuth 2.0 framework for Python 3." __url__ = "https://github.com/aliev/aioauth" -__version__ = "1.5.1" +__version__ = "1.5.2" __author__ = "Ali Aliyev" __author_email__ = "ali@aliev.me" __license__ = "The MIT License (MIT)" diff --git a/setup.cfg b/setup.cfg index 00dd598..6b40ce4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,12 +1,3 @@ -[bumpversion] -current_version = 1.5.1 -commit = True -tag = True - -[bumpversion:file:aioauth/__version__.py] -search = "{current_version}" -replace = "{new_version}" - [tool:pytest] addopts = -s --strict-markers -vv --cache-clear --maxfail=1 --cov=aioauth --cov-report=term --cov-report=html --cov-branch --no-cov-on-fail diff --git a/setup.py b/setup.py index 743164d..c03fa89 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,6 @@ "pytest-env==0.6.2", "pytest-sugar==0.9.4", "testfixtures==6.18.3", - "bump2version==1.0.1", "twine==3.7.1", "wheel", ]