Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
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={
Expand All @@ -31,4 +31,4 @@
'tap_google_sheets': [
'schemas/*.json'
]
})
})