Skip to content

Commit bd203fa

Browse files
authored
Update version for 2.12.1 release. (#2139)
1 parent 2402877 commit bd203fa

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

tensorflow_serving/model_servers/BUILD

+2-2
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ pkg_deb(
534534
homepage = "https://github.com/tensorflow/serving",
535535
maintainer = "TensorFlow Serving team",
536536
package = "tensorflow-model-server",
537-
version = "2.12.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
537+
version = "2.12.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
538538
)
539539

540540
# Build with '-c opt'
@@ -545,5 +545,5 @@ pkg_deb(
545545
homepage = "https://github.com/tensorflow/serving",
546546
maintainer = "TensorFlow Serving team",
547547
package = "tensorflow-model-server-universal",
548-
version = "2.12.0", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
548+
version = "2.12.1", # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
549549
)

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 12
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

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

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

0 commit comments

Comments
 (0)