diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 1387842..1967a4d 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -12,4 +12,5 @@ - [ ] Have you built the library locally and made queries against it successfully? - [ ] Did you update the changelog? - [ ] Did you bump the package version? +- [ ] If endpoints were removed, did you manually remove the corresponding files? (this should be rare) - [ ] For breaking changes, did you plan for the release of the new SDK versions and deploy the API to production? diff --git a/patch_api/__init__.py b/patch_api/__init__.py index 4263eeb..15bbf41 100644 --- a/patch_api/__init__.py +++ b/patch_api/__init__.py @@ -15,7 +15,7 @@ from __future__ import absolute_import -__version__ = "1.17.0" +__version__ = "1.17.1" # import ApiClient from patch_api.api_client import ApiClient diff --git a/patch_api/api_client.py b/patch_api/api_client.py index 0037da3..f296ba2 100644 --- a/patch_api/api_client.py +++ b/patch_api/api_client.py @@ -91,7 +91,7 @@ def __init__( self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = "patch-python/1.17.0" + self.user_agent = "patch-python/1.17.1" def __del__(self): if self._pool: diff --git a/patch_api/configuration.py b/patch_api/configuration.py index c8f02f0..fd7eb11 100644 --- a/patch_api/configuration.py +++ b/patch_api/configuration.py @@ -341,7 +341,7 @@ def to_debug_report(self): "OS: {env}\n" "Python Version: {pyversion}\n" "Version of the API: v1\n" - "SDK Package Version: 1.17.0".format( + "SDK Package Version: 1.17.1".format( env=sys.platform, pyversion=sys.version ) ) diff --git a/setup.py b/setup.py index 1c11353..c78ebfa 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "patch-api" -VERSION = "1.17.0" +VERSION = "1.17.1" # To install the library, run the following # # python setup.py install