Skip to content

Commit a0be2bf

Browse files
authored
Update version for 2.15.1 release. (#2213)
1 parent 6b8a8bc commit a0be2bf

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tensorflow_serving/model_servers/BUILD

+2-2
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ pkg_deb(
658658
homepage = "https://github.com/tensorflow/serving",
659659
maintainer = "TensorFlow Serving team",
660660
package = "tensorflow-model-server",
661-
version = "2.15.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
661+
version = "2.15.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
662662
)
663663

664664
# Build with '-c opt'
@@ -669,5 +669,5 @@ pkg_deb(
669669
homepage = "https://github.com/tensorflow/serving",
670670
maintainer = "TensorFlow Serving team",
671671
package = "tensorflow-model-server-universal",
672-
version = "2.15.0-rc0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
672+
version = "2.15.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
673673
)

tensorflow_serving/model_servers/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ limitations under the License.
2424

2525
#define TF_MODELSERVER_MAJOR_VERSION 2
2626
#define TF_MODELSERVER_MINOR_VERSION 15
27-
#define TF_MODELSERVER_PATCH_VERSION 0
27+
#define TF_MODELSERVER_PATCH_VERSION 1
2828
// TF_MODELSERVER_VERSION_SUFFIX is non-empty for pre-releases
2929
// (e.g. "-alpha", "-alpha.1", "-beta", "-rc", "-rc.1")
3030
#define TF_MODELSERVER_VERSION_SUFFIX "-rc0"

tensorflow_serving/tools/pip_package/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
DOCLINES = __doc__.split('\n')
3232

3333
# Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
34-
_VERSION = '2.15.0-rc0'
34+
_VERSION = '2.15.1'
3535
# Have this by default be open; releasing a new version will lock to TF version
36-
_TF_VERSION = '>=2.15.0-rc0,<3'
36+
_TF_VERSION = '>=2.15.1,<3'
3737
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')
3838

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)