diff --git a/CHANGELOG.md b/CHANGELOG.md index c86165a..d43f796 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 2.0.1 + * Dependabot update [#93](https://github.com/singer-io/tap-google-sheets/pull/93) + ## 2.0.0 * Google Sheets will now support shared drives [#80](https://github.com/singer-io/tap-google-sheets/pull/80) * Non-boolean values in boolean columns will fallback to string [#83](https://github.com/singer-io/tap-google-sheets/pull/83) @@ -68,4 +71,4 @@ * Change number json schema to anyOf with multipleOf; skip empty rows; move write_bookmark to end of sync.py ## 0.0.1 - * Initial commit + * Initial commit \ No newline at end of file diff --git a/setup.py b/setup.py index 57b4469..ce7ed36 100644 --- a/setup.py +++ b/setup.py @@ -3,14 +3,14 @@ from setuptools import setup, find_packages setup(name='tap-google-sheets', - version='2.0.0', + version='2.0.1', description='Singer.io tap for extracting data from the Google Sheets v4 API', author='jeff.huth@bytecode.io', classifiers=['Programming Language :: Python :: 3 :: Only'], py_modules=['tap_google_sheets'], install_requires=[ 'backoff==1.8.0', - 'requests==2.22.0', + 'requests==2.31.0', 'singer-python==5.12.2' ], extras_require={ @@ -31,4 +31,4 @@ 'tap_google_sheets': [ 'schemas/*.json' ] - }) + }) \ No newline at end of file