Skip to content

Commit

Permalink
fix path in v1/__init__ file (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenRKarl authored Mar 6, 2019
1 parent 0e120f4 commit ab9e1a9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* 1.0.1:
- Fix bug in import path from issues #45 and #44.

* 1.0.0:
- Google Ads v1_0 release.
- Move examples out of v0 directory.
Expand Down
2 changes: 1 addition & 1 deletion google/ads/google_ads/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
import google.ads.google_ads.errors


VERSION = '1.0.0'
VERSION = '1.0.1'
2 changes: 1 addition & 1 deletion google/ads/google_ads/v1/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from __future__ import absolute_import


from google.ads.google_ads.1 import types
from google.ads.google_ads.v1 import types
from google.ads.google_ads.v1.services import account_budget_proposal_service_client
from google.ads.google_ads.v1.services import account_budget_service_client
from google.ads.google_ads.v1.services import ad_group_ad_label_service_client
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

setup(
name='google-ads',
version='1.0.0',
version='1.0.1',
author='Google LLC',
author_email='[email protected]',
classifiers=[
Expand Down

0 comments on commit ab9e1a9

Please sign in to comment.