Skip to content

Commit f94228a

Browse files
authored
Release version 13.0.0 (#465)
1 parent 77974af commit f94228a

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
* 13.0.0
2+
- Bump the minimum Python version requirement to 3.7+
3+
- Fix package name in base transport files
4+
- Update examples to new "client.enums" syntax
5+
- Move CSV reporting example to migration directory
6+
- Various minor updates to examples and documentation.
7+
18
* 12.0.0
29
- Google Ads API v8_0 release.
310
- Deprecate Google Ads API v5_0.

README.rst

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Build Status
99

1010
Requirements
1111
------------
12-
* Python 3.6+
12+
* Python 3.7+
1313

1414
Installation
1515
------------
@@ -28,6 +28,22 @@ Documentation
2828
Please refer to our `Developer Site`_ for documentation on how to install,
2929
configure, and use this client library.
3030

31+
For Python 3.6 Users
32+
--------------------
33+
Version [12.0.0](https://pypi.org/project/google-ads/12.0.0/) of this library
34+
is the last version that is compatible with Python 3.6. It contains support for
35+
[`v6`](https://developers.google.com/google-ads/api/reference/rpc/v6/overview),
36+
[`v7`](https://developers.google.com/google-ads/api/reference/rpc/v7/overview),
37+
and [`v8`](https://developers.google.com/google-ads/api/reference/rpc/v8/overview)
38+
of the Google Ads API. The newest API version, `v8`, will be supported until
39+
the Spring of 2022. Given that the [EOL](https://endoflife.date/python) for
40+
Python 3.6 is December 23, 2021, we encourage our users to upgrade to Python 3.7
41+
or above as soon as possible to avoid issues. Users who cannot upgrade can
42+
continue to safely use version 12.0.0 until `v8` of the Google Ads API is
43+
deprecated. Please follow the
44+
[Google Ads Developer Blog](https://ads-developers.googleblog.com/) for
45+
announcements of the specific deprecation dates for the above API versions.
46+
3147
Miscellaneous
3248
-------------
3349

google/ads/googleads/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
import google.ads.googleads.util
1919

2020

21-
VERSION = "12.0.0"
21+
VERSION = "13.0.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
setup(
3535
name="google-ads",
36-
version="12.0.0",
36+
version="13.0.0",
3737
author="Google LLC",
3838
author_email="[email protected]",
3939
classifiers=[

0 commit comments

Comments
 (0)