Skip to content

Commit 3928e68

Browse files
authored
Merge pull request #3 from MarletteFunding/feature/DATA-1710-upgrade-google-ads-api-version
Feature/data 1710 upgrade google ads api version
2 parents 17dabec + a4efa25 commit 3928e68

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
# Changelog
2+
## v1.5.0
3+
* Updates API version to 13
4+
* Updates pkg version to 21.0.0
5+
* [#82](https://github.com/singer-io/tap-google-ads/pull/82)
6+
7+
8+
## v1.4.0
9+
* Updates API version to 12
10+
* Updates pkg version to 19.0.0
11+
* Removes `gmail_ad` fields from `ad_performance_report` as they are no longer available after API version bump.
12+
* [#76](https://github.com/singer-io/tap-google-ads/pull/76)
213

314
## v1.3.4
415
* Updates API Version to 11

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup
44

55
setup(name='tap-google-ads',
6-
version='1.3.4',
6+
version='1.5.0',
77
description='Singer.io tap for extracting data from the Google Ads API',
88
author='Stitch',
99
url='http://singer.io',
@@ -13,8 +13,8 @@
1313
'singer-python==5.12.2',
1414
'requests==2.26.0',
1515
'backoff==1.8.0',
16-
'google-ads==19.0.0',
17-
'protobuf==4.21.5',
16+
'google-ads==21.2.0',
17+
'protobuf==4.22.3',
1818
# Necessary to handle gRPC exceptions properly, documented
1919
# in an issue here: https://github.com/googleapis/python-api-core/issues/301
2020
'grpcio-status==1.44.0',

tap_google_ads/streams.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
LOGGER = singer.get_logger()
1616

17-
API_VERSION = "v12"
17+
API_VERSION = "v14"
1818

1919
API_PARAMETERS = {
2020
"omit_unselected_resource_names": "true"

0 commit comments

Comments
 (0)