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
27 changes: 27 additions & 0 deletions vision/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,33 @@

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

## 0.29.0

### :warning: Breaking Changes

- The HTTP/JSON based client that was deprecated in 0.25.0 is completely
removed.

### Release Candidate

- This is the (hopefully) final release candidate before declaring a stable
release.

### Features

- The `v1p1beta1` endpoint has been added. (#4493)

This is a superset of `v1` and includes features that are still in beta
on the API side. You can opt in to this endpoint by importing it explicitly:

```python
from google.cloud import vision_v1p1beta1
client = vision_v1p1beta1.ImageAnnotatorClient()
```

PyPI: https://pypi.org/project/google-cloud-vision/0.29.0/


## 0.28.0

### Notable Implementation Changes
Expand Down
2 changes: 1 addition & 1 deletion vision/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
author='Google Cloud Platform',
author_email='[email protected]',
name='google-cloud-vision',
version='0.28.1.dev1',
version='0.29.0',
description='Python Client for Google Cloud Vision',
long_description=readme,
namespace_packages=[
Expand Down