diff --git a/letterboxd/__init__.py b/letterboxd/__init__.py index d306a98..3f8c3b1 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.4" +__version__ = "0.2.5" def new(api_base=API_BASE_URL, api_key="", api_secret=""): diff --git a/setup.cfg b/setup.cfg index b901b2b..4b3324c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.4 +current_version = 0.2.5 commit = True tag = True diff --git a/setup.py b/setup.py index e26dff3..030a4ba 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.4", + version="0.2.5", python_requires=">=3.6", install_requires=requirements, description="Python 3 wrapper for the Letterboxd API",