Skip to content

Commit

Permalink
Updated the version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
avijit-nervana committed Jun 13, 2019
1 parent b1203da commit 898c51a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ The installation prerequisites are the same as described in the TensorFlow

git clone https://github.com/tensorflow/ngraph-bridge.git
cd ngraph-bridge
git checkout v0.14.1
git checkout v0.14.2


2. Next run the following Python script to build TensorFlow, nGraph and the bridge. Please use Python 3.5:
Expand Down Expand Up @@ -120,7 +120,7 @@ with nGraph backends. Please note that you can also install the TensorFlow and n
This will produce something like this:

TensorFlow version: 1.13.1
nGraph bridge version: b'0.14.1'
nGraph bridge version: b'0.14.2'
nGraph version used for this build: b'0.20.0-rc.0+0995b71'
TensorFlow version used for this build: v1.13.1-0-g6612da8951
CXX11_ABI flag used for this build: 0
Expand Down
2 changes: 1 addition & 1 deletion python/setup.in.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def get_tag(self):

setup(
name='ngraph_tensorflow_bridge',
version='0.14.1',
version='0.14.2rc0',
description='Intel nGraph compiler and runtime for TensorFlow',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
4 changes: 2 additions & 2 deletions src/version.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@

#define NG_TF_MAJOR_VERSION 0
#define NG_TF_MINOR_VERSION 14
#define NG_TF_PATCH_VERSION 1
#define NG_TF_PATCH_VERSION 2

// The version suffix is used for pre-release version numbers
// For example before v0.7.0 we may do a pre-release i.e., a release
// candidate such as v0.7.0-rc0
// The code in master will always have the last released version number
// with a suffix of '-master'
#define NG_TF_VERSION_SUFFIX ""
#define NG_TF_VERSION_SUFFIX "-rc0"

#define VERSION_STR_HELPER(x) #x
#define VERSION_STR(x) VERSION_STR_HELPER(x)
Expand Down

0 comments on commit 898c51a

Please sign in to comment.