Skip to content

Commit dbd7b8f

Browse files
committed
Cut 0.19.0 release.
This is the first release after the rename. Closes #2264.
1 parent 6fb2d73 commit dbd7b8f

File tree

6 files changed

+21
-22
lines changed

6 files changed

+21
-22
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,12 @@ after_success:
1919

2020
deploy:
2121
provider: pypi
22-
user: silvolu
22+
user: gcloudpypi
2323
password:
24-
secure: keSFPLzVj/yAAJ8kw4m+U5kpIiGqubpDqhcHPlGAvMohFMIO4D8ffgCqJdbhQshTtb/wiS5ajK1KNpEzq4BKD/5oRXuj/sIRTMENzX/azUXkT/bADLEGocyfE4/NAGQ9mcDOmHntjt7UUhYN6H87rgex22er4V1vD5tGf5Kc1HU=
24+
secure: LR0i9Oeu6kpLTYS5xK/zCng4gmdtPvFfD/XYdQhyY5jBibQkC2WUQU6nJA9bDXRxhBP5bUwXFGkbhOcOJgHNrUfmyPzpDbM8BR29KfY0WfdYv72gsGZOaekqCReFmHbqLE7qOQtHR5U3ey6ivcgw+hZO72Uu6qDCc9B8qwoBfAs=
2525
on:
2626
tags: true
2727
repo: GoogleCloudPlatform/google-cloud-python
28-
# until this is fixed: https://github.com/travis-ci/travis-ci/issues/1675
2928
all_branches: true
3029
# 'bdist_wheel' builds disabled until #1879 et al. are resolved.
3130
distributions: "sdist"

README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Quick Start
4141

4242
::
4343

44-
$ pip install --upgrade gcloud
44+
$ pip install --upgrade google-cloud
4545

4646
Example Applications
4747
--------------------
@@ -328,7 +328,7 @@ Apache 2.0 - See `LICENSE`_ for more information.
328328
:target: https://travis-ci.org/GoogleCloudPlatform/google-cloud-python
329329
.. |coverage| image:: https://coveralls.io/repos/GoogleCloudPlatform/google-cloud-python/badge.png?branch=master
330330
:target: https://coveralls.io/r/GoogleCloudPlatform/google-cloud-python?branch=master
331-
.. |pypi| image:: https://img.shields.io/pypi/v/gcloud.svg
332-
:target: https://pypi.python.org/pypi/gcloud
333-
.. |versions| image:: https://img.shields.io/pypi/pyversions/gcloud.svg
334-
:target: https://pypi.python.org/pypi/gcloud
331+
.. |pypi| image:: https://img.shields.io/pypi/v/google-cloud.svg
332+
:target: https://pypi.python.org/pypi/google-cloud
333+
.. |versions| image:: https://img.shields.io/pypi/pyversions/google-cloud.svg
334+
:target: https://pypi.python.org/pypi/google-cloud

docs/vision-usage.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ Annotate multiple images
5353
.. code-block:: python
5454
5555
>>> import io
56-
>>> from gcloud import vision
56+
>>> from google.cloud import vision
5757
>>> client = vision.Client()
58-
>>> with io.open('./image.png', 'rb') as image_file:
58+
>>> with io.open('./image.png', 'rb') as image_file:
5959
... image_one = client.image(content=image_file.read())
6060
>>> image_two = client.image(source_uri='gs://my-storage-bucket/image.jpg')
6161
>>> with client.batch():

google/cloud/bigquery/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ def list_projects(self, max_results=None, page_token=None):
8888
projects.
8989
9090
:rtype: tuple, (list, str)
91-
:returns: list of :class:`gcloud.bigquery.client.Project`, plus a
92-
"next page token" string: if the token is not None,
91+
:returns: list of :class:`~google.cloud.bigquery.client.Project`,
92+
plus a "next page token" string: if the token is not None,
9393
indicates that more projects can be retrieved with another
9494
call (pass that value as ``page_token``).
9595
"""

google/cloud/resource_manager/client.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def new_project(self, project_id, name=None, labels=None):
5454
Use :meth:`Project.reload() \
5555
<google.cloud.resource_manager.project.Project.reload>` to retrieve
5656
project metadata after creating a
57-
:class:`~gcloud.resource_manager.project.Project` instance.
57+
:class:`~google.cloud.resource_manager.project.Project` instance.
5858
5959
.. note:
6060
@@ -69,9 +69,9 @@ def new_project(self, project_id, name=None, labels=None):
6969
:type labels: dict
7070
:param labels: A list of labels associated with the project.
7171
72-
:rtype: :class:`~gcloud.resource_manager.project.Project`
72+
:rtype: :class:`~google.cloud.resource_manager.project.Project`
7373
:returns: A new instance of a
74-
:class:`~gcloud.resource_manager.project.Project`
74+
:class:`~google.cloud.resource_manager.project.Project`
7575
**without** any metadata loaded.
7676
"""
7777
return Project(project_id=project_id,
@@ -88,9 +88,9 @@ def fetch_project(self, project_id):
8888
:type project_id: str
8989
:param project_id: The ID for this project.
9090
91-
:rtype: :class:`~gcloud.resource_manager.project.Project`
92-
:returns: A :class:`~gcloud.resource_manager.project.Project` with
93-
metadata fetched from the API.
91+
:rtype: :class:`~google.cloud.resource_manager.project.Project`
92+
:returns: A :class:`~google.cloud.resource_manager.project.Project`
93+
with metadata fetched from the API.
9494
"""
9595
project = self.new_project(project_id)
9696
project.reload()
@@ -145,7 +145,7 @@ def list_projects(self, filter_params=None, page_size=None):
145145
:returns: A project iterator. The iterator will make multiple API
146146
requests if you continue iterating and there are more
147147
pages of results. Each item returned will be a.
148-
:class:`~gcloud.resource_manager.project.Project`.
148+
:class:`~google.cloud.resource_manager.project.Project`.
149149
"""
150150
extra_params = {}
151151

@@ -162,10 +162,10 @@ class _ProjectIterator(Iterator):
162162
"""An iterator over a list of Project resources.
163163
164164
You shouldn't have to use this directly, but instead should use the
165-
helper methods on :class:`google.cloud.resource_manager.client.Client`
165+
helper methods on :class:`~google.cloud.resource_manager.client.Client`
166166
objects.
167167
168-
:type client: :class:`google.cloud.resource_manager.client.Client`
168+
:type client: :class:`~google.cloud.resource_manager.client.Client`
169169
:param client: The client to use for making connections.
170170
171171
:type extra_params: dict

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-cloud',
37-
version='0.18.0',
37+
version='0.19.0',
3838
description='API Client library for Google Cloud',
3939
author='Google Cloud Platform',
4040
author_email='jjg+google-cloud-python@google.com',

0 commit comments

Comments
 (0)