Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Commit 260b208

Browse files
Version 0.11.0-rc0
1 parent 235b5ea commit 260b208

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ This will produce something like this:
4444
TensorFlow version: r 1.12.0
4545
TensorFlow version installed: 1.12.0 (v1.12.0-0-ga6d8ffae09)
4646
nGraph bridge built with: 1.12.0 (v1.12.0-0-ga6d8ffae09)
47-
b'0.10.0'
47+
b'0.11.0-rc0'
4848

4949
Next you can try out the TensorFlow models by adding one line to your existing
5050
TensorFlow model scripts and running them the usual way:

python/setup.in.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def get_tag(self):
3939

4040
setup(
4141
name='ngraph_tensorflow_bridge',
42-
version='0.10.0',
42+
version='0.11.0-rc0',
4343
description='Intel nGraph compiler and runtime for TensorFlow',
4444
long_description=long_description,
4545
long_description_content_type="text/markdown",

src/version.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
// nGraph-TensorFlow bridge uses semantic versioning: see http://semver.org/
2222

2323
#define NG_TF_MAJOR_VERSION 0
24-
#define NG_TF_MINOR_VERSION 10
24+
#define NG_TF_MINOR_VERSION 11
2525
#define NG_TF_PATCH_VERSION 0
2626

2727
// The version suffix is used for pre-release version numbers
2828
// For example before v0.7.0 we may do a pre-release i.e., a release
2929
// candidate such as v0.7.0-rc0
30-
#define NG_TF_VERSION_SUFFIX ""
30+
#define NG_TF_VERSION_SUFFIX "-rc0"
3131

3232
#define VERSION_STR_HELPER(x) #x
3333
#define VERSION_STR(x) VERSION_STR_HELPER(x)

0 commit comments

Comments
 (0)