Skip to content

Commit

Permalink
Prepare for tfx_bsl 0.15.0 release.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 273528734
  • Loading branch information
brills authored and tfx-copybara committed Oct 8, 2019
1 parent 6875f23 commit 2ca99b2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
13 changes: 7 additions & 6 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<!-- mdlint off(HEADERS_TOO_MANY_H1) -->
# Current version (not yet released; still in development)
# `tfx_bsl` release notes

## Major Features and Improvements
## Release 0.15.0

### Major Features and Improvements

* Added a tf.Example <-> Arrow coder.
* Added a tf.Example -> `Dict[str, np.ndarray]` coder (this is a legacy
Expand All @@ -10,8 +11,8 @@
* Added a python class, `tfx_bsl.beam.Shared` that helps sharing a single
instance of object across multiple threads.

## Bug Fixes and Other Changes
### Bug Fixes and Other Changes

## Breaking Changes
### Breaking Changes

## Deprecations
### Deprecations
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@ def has_ext_modules(self):
# six, and protobuf) with TF.
install_requires=[
'absl-py>=0.7,<1',
'apache-beam[gcp]>=2.14,<3',
'apache-beam[gcp]>=2.16,<3',
'numpy>=1.16,<2',
'protobuf>=3.7,<4',
'six>=1.10,<2',
'tensorflow-metadata>=0.14,<0.15',
'six>=1.12,<2',
'tensorflow-metadata>=0.15,<0.16',
] + [_PYARROW_VERSION_REQUIREMENT],
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,<4',
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion tfx_bsl/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
"""Contains the version string of tfx_bsl."""

# Note that setup.py uses this version.
__version__ = '0.15.0dev'
__version__ = '0.15.0'

0 comments on commit 2ca99b2

Please sign in to comment.