diff --git a/CHANGELOG.md b/CHANGELOG.md index 534d789..39ad79a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.11.1 + * Dependabot update [#56](https://github.com/singer-io/tap-freshdesk/pull/56) + ## 0.11.0 * Add `integer` as a valid type for `groups.auto_ticket_assign` [#42](https://github.com/singer-io/tap-freshdesk/pull/42) @@ -11,4 +14,4 @@ * Adds embedded fields to tickets endpoint [#19](https://github.com/singer-io/tap-freshdesk/pull/19) ## 0.8.2 - * Adds `try` logic around sync_tickets function to handle soft-deleted tickets [#18](https://github.com/singer-io/tap-freshdesk/pull/18) + * Adds `try` logic around sync_tickets function to handle soft-deleted tickets [#18](https://github.com/singer-io/tap-freshdesk/pull/18) \ No newline at end of file diff --git a/setup.py b/setup.py index b4f3170..c1ce0e3 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup(name='tap-freshdesk', - version='0.11.0', + version='0.11.1', description='Singer.io tap for extracting data from the Freshdesk API', author='Stitch', url='http://singer.io', @@ -11,7 +11,7 @@ py_modules=['tap_freshdesk'], install_requires=[ 'singer-python==5.2.3', - 'requests==2.20.0', + 'requests==2.31.0', 'backoff==1.3.2' ], entry_points=''' @@ -33,4 +33,4 @@ ], }, include_package_data=True, -) +) \ No newline at end of file