From 1170936e1cd87939cab4b7d43ff85572ab9e26cb Mon Sep 17 00:00:00 2001 From: struct2tensor-team Date: Thu, 10 Dec 2020 14:08:08 -0800 Subject: [PATCH] Struct2Tensor 0.26.0 Release PiperOrigin-RevId: 346861591 --- RELEASE.md | 16 ++++++++++++++++ setup.py | 4 ++-- struct2tensor/version.py | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 2cf10f5..1ce0f15 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -4,6 +4,16 @@ ## Major Features and Improvements +## Bug Fixes and Other Changes + +## Breaking changes + +## Deprecations + +## Release 0.26.0 + +## Major Features and Improvements + * Created a docker image that contains a TF model server with struct2tensor ops linked. This docker image is available at `gcr.io/tfx-oss-public/s2t_tf_serving` . @@ -14,10 +24,16 @@ ## Bug Fixes and Other Changes +* Depends on `tensorflow-metadata>=0.26,<0.27`. + ## Breaking changes +* N/A + ## Deprecations +* N/A + ## Release 0.25.0 ## Major Features and Improvements diff --git a/setup.py b/setup.py index 6dd1224..b9e38f1 100644 --- a/setup.py +++ b/setup.py @@ -77,8 +77,8 @@ def select_constraint(default, nightly=None, git_master=None): 'protobuf>=3.8.0,<4', 'tensorflow>=2.3.0,<2.4', 'tensorflow-metadata' + select_constraint( - default='>=0.25,<0.26', - nightly='>=0.26.0.dev', + default='>=0.26,<0.27', + nightly='>=0.27.0.dev', git_master='@git+https://github.com/tensorflow/metadata@master'), 'pyarrow>=0.17,<1', ], diff --git a/struct2tensor/version.py b/struct2tensor/version.py index 9be00b4..6c324e1 100644 --- a/struct2tensor/version.py +++ b/struct2tensor/version.py @@ -15,4 +15,4 @@ """Contains the version string of struct2tensor.""" # Note that setup.py uses this version. -__version__ = '0.26.0.dev' +__version__ = '0.27.0.dev'