Skip to content

Commit 7b6021d

Browse files
authored
Update version for 2.17.1 release. (#2266)
* Update version for 2.17.1 release. * Update .bazelrc
1 parent 411f376 commit 7b6021d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.bazelrc

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ build:cuda_clang --action_env=GCC_HOST_COMPILER_PATH="/dt9/usr/bin/gcc"
2424
build:cuda_clang --action_env=CLANG_CUDA_COMPILER_PATH="/usr/lib/llvm-17/bin/clang"
2525
build:cuda_clang --action_env=LD_LIBRARY_PATH="/usr/local/cuda/lib64:/usr/local/cuda/extras/CUPTI/lib64"
2626

27-
build:kokoro --repo_env=CC="/usr/bin/gcc-10"
28-
build:kokoro --action_env=CC="/usr/bin/gcc-10"
27+
build:kokoro --repo_env=CC="/usr/bin/gcc"
28+
build:kokoro --action_env=CC="/usr/bin/gcc"
2929

3030
# Options used to build with TPU support.
3131
build:tpu --define=with_tpu_support=true --define=framework_shared_object=false

tensorflow_serving/model_servers/BUILD

+2-2
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ pkg_deb(
659659
homepage = "https://github.com/tensorflow/serving",
660660
maintainer = "TensorFlow Serving team",
661661
package = "tensorflow-model-server",
662-
version = "2.17.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
662+
version = "2.17.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
663663
)
664664

665665
# Build with '-c opt'
@@ -670,5 +670,5 @@ pkg_deb(
670670
homepage = "https://github.com/tensorflow/serving",
671671
maintainer = "TensorFlow Serving team",
672672
package = "tensorflow-model-server-universal",
673-
version = "2.17.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
673+
version = "2.17.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
674674
)

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 17
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 ""

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.17.0'
34+
_VERSION = '2.17.1'
3535
# Have this by default be open; releasing a new version will lock to TF version
36-
_TF_VERSION = '>=2.17.0,<3'
36+
_TF_VERSION = '>=2.17.1,<3'
3737
_TF_VERSION_SANITIZED = _TF_VERSION.replace('-', '')
3838

3939
project_name = 'tensorflow-serving-api'

0 commit comments

Comments
 (0)