diff --git a/pyproject.toml.XXX b/pyproject.toml.XXX index 0ad03e1f..bd3fde9f 100644 --- a/pyproject.toml.XXX +++ b/pyproject.toml.XXX @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "zenpy" -version = "2.0.40" +version = "2.0.41" authors = [ { name="William Coe", email="facetoe@facetoe.com.au" }, ] diff --git a/setup.py b/setup.py index f6ffe637..a248f4bf 100755 --- a/setup.py +++ b/setup.py @@ -4,14 +4,14 @@ setup( name='zenpy', packages=setuptools.find_packages(), - version='2.0.40', + version='2.0.41', description='Python wrapper for the Zendesk API', license='GPLv3', license_files = ('LICENSE'), author='Face Toe', author_email='facetoe@facetoe.com.au', url='https://github.com/facetoe/zenpy', - download_url='https://github.com/facetoe/zenpy/releases/tag/2.0.40', + download_url='https://github.com/facetoe/zenpy/releases/tag/2.0.41', install_requires=[ 'requests>=2.14.2', 'python-dateutil>=2.7.5', diff --git a/zenpy/__init__.py b/zenpy/__init__.py index 4e4d8edb..60d2b737 100644 --- a/zenpy/__init__.py +++ b/zenpy/__init__.py @@ -58,7 +58,7 @@ log = logging.getLogger() __author__ = "facetoe" -__version__ = "2.0.40" +__version__ = "2.0.41" class Zenpy(object):