Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@

[1]: https://pypi.org/project/google-cloud/#history

## 0.31.0

Feature / bugfix release for the following packages:

* [`google-cloud-pubsub==0.29.1`](https://pypi.org/project/google-cloud-pubsub/0.29.1/)
* [`google-cloud-videointelligence==1.0.0`](https://pypi.org/project/google-cloud-videointelligence/1.0.0/)

## 0.30.0

Feature / bugfix release for the following package:
Expand Down
2 changes: 2 additions & 0 deletions docs/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,5 @@ The ``google-cloud`` package (formerly ``gcloud``) contains
* ``0.27.0`` (`PyPI <https://pypi.org/project/google-cloud/0.27.0/>`__, `Release Notes <https://github.com/GoogleCloudPlatform/google-cloud-python/releases/tag/0.27.0>`__)
* ``0.28.0`` (`PyPI <https://pypi.org/project/google-cloud/0.28.0/>`__, `Release Notes <https://github.com/GoogleCloudPlatform/google-cloud-python/releases/tag/0.28.0>`__)
* ``0.29.0`` (`PyPI <https://pypi.org/project/google-cloud/0.29.0/>`__, `Release Notes <https://github.com/GoogleCloudPlatform/google-cloud-python/releases/tag/0.29.0>`__)
* ``0.30.0`` (`PyPI <https://pypi.org/project/google-cloud/0.30.0/>`__, `Release Notes <https://github.com/GoogleCloudPlatform/google-cloud-python/releases/tag/0.30.0>`__)
* ``0.31.0`` (`PyPI <https://pypi.org/project/google-cloud/0.31.0/>`__, `Release Notes <https://github.com/GoogleCloudPlatform/google-cloud-python/releases/tag/0.31.0>`__)
1 change: 1 addition & 0 deletions docs/videointelligence/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
* ``0.27.1`` (`PyPI <https://pypi.org/project/google-cloud-videointelligence/0.27.1/>`__, `Release Notes <https://github.com/GoogleCloudPlatform/google-cloud-python/releases/tag/videointelligence-0.27.1>`__)
* ``0.27.2`` (`PyPI <https://pypi.org/project/google-cloud-videointelligence/0.27.2/>`__, `Release Notes <https://github.com/GoogleCloudPlatform/google-cloud-python/releases/tag/videointelligence-0.27.2>`__)
* ``0.28.0`` (`PyPI <https://pypi.org/project/google-cloud-videointelligence/0.28.0/>`__, `Release Notes <https://github.com/GoogleCloudPlatform/google-cloud-python/releases/tag/videointelligence-0.28.0>`__)
* ``1.0.0`` (`PyPI <https://pypi.org/project/google-cloud-videointelligence/1.0.0/>`__, `Release Notes <https://github.com/GoogleCloudPlatform/google-cloud-python/releases/tag/videointelligence-1.0.0>`__)
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,21 +60,21 @@
'google-cloud-language >= 1.0.0, < 1.1dev',
'google-cloud-logging >= 1.4.0, < 1.5dev',
'google-cloud-monitoring >= 0.28.0, < 0.29dev',
'google-cloud-pubsub >= 0.29.0, < 0.30dev',
'google-cloud-pubsub >= 0.29.1, < 0.30dev',
'google-cloud-resource-manager >= 0.28.0, < 0.29dev',
'google-cloud-runtimeconfig >= 0.28.0, < 0.29dev',
'google-cloud-spanner >= 0.29.0, < 0.30dev',
'google-cloud-speech >= 0.30.0, < 0.31dev',
'google-cloud-storage >= 1.6.0, < 1.7dev',
'google-cloud-trace >= 0.16.0, < 0.17dev',
'google-cloud-translate >= 1.3.0, < 1.4dev',
'google-cloud-videointelligence >= 0.28.0, < 0.29dev',
'google-cloud-videointelligence >= 1.0.0, < 1.1dev',
'google-cloud-vision >= 0.28.0, < 0.29dev',
]

setup(
name='google-cloud',
version='0.30.1.dev1',
version='0.31.0',
description='API Client library for Google Cloud',
long_description=README,
install_requires=REQUIREMENTS,
Expand Down
25 changes: 25 additions & 0 deletions videointelligence/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,31 @@

[1]: https://pypi.org/project/google-cloud-videointelligence/#history

## 1.0.0

[![release level](https://img.shields.io/badge/release%20level-general%20availability%20%28GA%29-brightgreen.svg?style&#x3D;flat)](https://cloud.google.com/terms/launch-stages)

This comment was marked as spam.

This comment was marked as spam.


### Features

#### General Availability

The `google-cloud-videointelligence` package is now supported at the
**general availability** quality level. This means it is stable; the code
and API surface will not change in backwards-incompatible ways unless
absolutely necessary (e.g. because of critical security issues) or with an
extensive deprecation period.

One exception to this: We will remove beta endpoints (as a semver-minor update)
at whatever point the underlying endpoints go away.

#### v1 endpoint

The underlying video intelligence API has also gone general availability, and
this library by default now uses the `v1` endpoint (rather than `v1beta2`)
unless you explicitly used something else. This is a backwards compatible
change as the `v1` and `v1beta2` endpoints are identical. If you pinned to
`v1beta2`, you are encouraged to move to `v1`.

## 0.28.0

### Documentation
Expand Down
4 changes: 2 additions & 2 deletions videointelligence/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
author='Google Cloud Platform',
author_email='[email protected]',
name='google-cloud-videointelligence',
version='0.28.1.dev1',
version='1.0.0',
description='Python Client for Google Cloud Video Intelligence',
long_description=readme,
namespace_packages=[
Expand All @@ -50,7 +50,7 @@
zip_safe=False,
scripts=[],
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',

This comment was marked as spam.

'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
Expand Down