From 161a462388180fb55fa13b5c6c8ab48d39b86f9a Mon Sep 17 00:00:00 2001 From: Mark Boszko Date: Wed, 4 Jul 2018 23:30:44 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.5=20=E2=86=92=200.2.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- letterboxd/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/letterboxd/__init__.py b/letterboxd/__init__.py index 3f8c3b1..c9e040a 100644 --- a/letterboxd/__init__.py +++ b/letterboxd/__init__.py @@ -12,7 +12,7 @@ name = "letterboxd" __author__ = """Mark Boszko""" __email__ = "mboszko@mac.com" -__version__ = "0.2.5" +__version__ = "0.2.6" def new(api_base=API_BASE_URL, api_key="", api_secret=""): diff --git a/setup.cfg b/setup.cfg index 4b3324c..129331d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.5 +current_version = 0.2.6 commit = True tag = True diff --git a/setup.py b/setup.py index 030a4ba..1f52767 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setuptools.setup( name="letterboxd", packages=setuptools.find_packages(exclude=["contrib", "docs", "tests*", "sample"]), - version="0.2.5", + version="0.2.6", python_requires=">=3.6", install_requires=requirements, description="Python 3 wrapper for the Letterboxd API",