Skip to content

Commit 3c22332

Browse files
authored
Clean-up preferences (#52)
1 parent d785803 commit 3c22332

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@
1212
- [ ] Have you built the library locally and made queries against it successfully?
1313
- [ ] Did you update the changelog?
1414
- [ ] Did you bump the package version?
15+
- [ ] If endpoints were removed, did you manually remove the corresponding files? (this should be rare)
1516
- [ ] For breaking changes, did you plan for the release of the new SDK versions and deploy the API to production?

patch_api/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from __future__ import absolute_import
1717

18-
__version__ = "1.17.0"
18+
__version__ = "1.17.1"
1919

2020
# import ApiClient
2121
from patch_api.api_client import ApiClient

patch_api/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def __init__(
9191
self.default_headers[header_name] = header_value
9292
self.cookie = cookie
9393
# Set default User-Agent.
94-
self.user_agent = "patch-python/1.17.0"
94+
self.user_agent = "patch-python/1.17.1"
9595

9696
def __del__(self):
9797
if self._pool:

patch_api/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def to_debug_report(self):
341341
"OS: {env}\n"
342342
"Python Version: {pyversion}\n"
343343
"Version of the API: v1\n"
344-
"SDK Package Version: 1.17.0".format(
344+
"SDK Package Version: 1.17.1".format(
345345
env=sys.platform, pyversion=sys.version
346346
)
347347
)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from setuptools import setup, find_packages # noqa: H301
1313

1414
NAME = "patch-api"
15-
VERSION = "1.17.0"
15+
VERSION = "1.17.1"
1616
# To install the library, run the following
1717
#
1818
# python setup.py install

0 commit comments

Comments
 (0)