Skip to content

Commit ab9e1a9

Browse files
authored
fix path in v1/__init__ file (#43)
1 parent 0e120f4 commit ab9e1a9

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
* 1.0.1:
2+
- Fix bug in import path from issues #45 and #44.
3+
14
* 1.0.0:
25
- Google Ads v1_0 release.
36
- Move examples out of v0 directory.

google/ads/google_ads/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
import google.ads.google_ads.errors
2121

2222

23-
VERSION = '1.0.0'
23+
VERSION = '1.0.1'

google/ads/google_ads/v1/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from __future__ import absolute_import
1717

1818

19-
from google.ads.google_ads.1 import types
19+
from google.ads.google_ads.v1 import types
2020
from google.ads.google_ads.v1.services import account_budget_proposal_service_client
2121
from google.ads.google_ads.v1.services import account_budget_service_client
2222
from google.ads.google_ads.v1.services import ad_group_ad_label_service_client

setup.py

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

3535
setup(
3636
name='google-ads',
37-
version='1.0.0',
37+
version='1.0.1',
3838
author='Google LLC',
3939
author_email='[email protected]',
4040
classifiers=[

0 commit comments

Comments
 (0)