Skip to content

Commit

Permalink
Source/CNTK/CNTK.cpp, bindings/python/cntk/: CNTK 2.0.beta15.0 exactly
Browse files Browse the repository at this point in the history
  • Loading branch information
mahilleb-msft committed Mar 15, 2017
1 parent 113b8d4 commit f1a8056
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/CNTK/CNTK.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ int wmainWithBS(int argc, wchar_t* argv[]) // called from wmain which is a wrapp

static void PrintBanner(int argc, wchar_t* argv[], const string& timestamp)
{
fprintf(stderr, "CNTK 2.0.beta15.0+ (");
fprintf(stderr, "CNTK 2.0.beta15.0 (");
#ifdef _GIT_EXIST
fprintf(stderr, "%s %.6s, ", _BUILDBRANCH_, _BUILDSHA1_);
#endif
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/cntk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# for full license information.
# ==============================================================================

__version__ = '2.0.beta15.0+'
__version__ = '2.0.beta15.0'

import numpy as np

Expand Down
2 changes: 1 addition & 1 deletion bindings/python/doc/gettingstarted.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ you can start using CNTK from Python right away (don't forget to ``activate`` yo

>>> import cntk
>>> cntk.__version__
'2.0.beta15.0+'
'2.0.beta15.0'

>>> cntk.minus([1, 2, 3], [4, 5, 6]).eval()
array([-3., -3., -3.], dtype=float32)
Expand Down

0 comments on commit f1a8056

Please sign in to comment.