File tree 3 files changed +15
-4
lines changed
3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1
1
# 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 )
2
13
3
14
## v1.3.4
4
15
* Updates API Version to 11
Original file line number Diff line number Diff line change 3
3
from setuptools import setup
4
4
5
5
setup (name = 'tap-google-ads' ,
6
- version = '1.3.4 ' ,
6
+ version = '1.5.0 ' ,
7
7
description = 'Singer.io tap for extracting data from the Google Ads API' ,
8
8
author = 'Stitch' ,
9
9
url = 'http://singer.io' ,
13
13
'singer-python==5.12.2' ,
14
14
'requests==2.26.0' ,
15
15
'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 ' ,
18
18
# Necessary to handle gRPC exceptions properly, documented
19
19
# in an issue here: https://github.com/googleapis/python-api-core/issues/301
20
20
'grpcio-status==1.44.0' ,
Original file line number Diff line number Diff line change 14
14
15
15
LOGGER = singer .get_logger ()
16
16
17
- API_VERSION = "v12 "
17
+ API_VERSION = "v14 "
18
18
19
19
API_PARAMETERS = {
20
20
"omit_unselected_resource_names" : "true"
You can’t perform that action at this time.
0 commit comments