Skip to content

Commit

Permalink
SDK version upgrade to v19 (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
rdeshmukh15 committed Mar 6, 2024
1 parent 1482632 commit 6aeb27e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.20.1
* Bump facebook_business SDK to v19.0.0 [#238](https://github.com/singer-io/tap-facebook/pull/238)

## 1.20.0
* Run on python 3.11.7 [#237](https://github.com/singer-io/tap-facebook/pull/237)

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup

setup(name='tap-facebook',
version='1.20.0',
version='1.20.1',
description='Singer.io tap for extracting data from the Facebook Ads API',
author='Stitch',
url='https://singer.io',
Expand All @@ -13,7 +13,7 @@
'attrs==17.3.0',
'backoff==2.2.1',
'pendulum==1.2.0',
'facebook_business==17.0.2',
'facebook_business==19.0.0',
'requests==2.20.0',
'singer-python==6.0.0',
],
Expand Down
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class TestClient():
def __init__(self):
self.base_url = 'https://graph.facebook.com'
self.api_version = 'v18.0'
self.api_version = 'v19.0'
self.account_id = os.getenv('TAP_FACEBOOK_ACCOUNT_ID')
self.access_token = os.getenv('TAP_FACEBOOK_ACCESS_TOKEN')
self.account_url = f"{self.base_url}/{self.api_version}/act_{self.account_id}"
Expand Down

0 comments on commit 6aeb27e

Please sign in to comment.