From 011a784eaa4c61e6f0ae90e616ec815942dab84a Mon Sep 17 00:00:00 2001 From: Raymond Yang Date: Thu, 31 Jan 2019 19:04:33 -0800 Subject: [PATCH] Merge back from rel-0.2.1 (#422) * Addl TPN updates (#403) * Updated TPN * Update batch_norm_op_test.cc * Update ThirdPartyNotices.txt * Update ThirdPartyNotices.txt * Update readme with package links * Update README.md * Update README.md * Update README.md * Merged Ryan and TPN changes into single PR * minor fix * added mkldnn to GPU pipeline. Required by C# library as it is the default execution provider * Bump up version number for 0.2.1 release (#420) --- VERSION_NUMBER | 2 +- docs/Versioning.md | 1 + docs/python/README.rst | 5 +++++ onnxruntime/__init__.py | 2 +- package/rpm/onnxruntime.spec | 2 +- setup.py | 2 +- 6 files changed, 10 insertions(+), 4 deletions(-) diff --git a/VERSION_NUMBER b/VERSION_NUMBER index 0ea3a944b3..0c62199f16 100644 --- a/VERSION_NUMBER +++ b/VERSION_NUMBER @@ -1 +1 @@ -0.2.0 +0.2.1 diff --git a/docs/Versioning.md b/docs/Versioning.md index 386782167c..6468f97a11 100644 --- a/docs/Versioning.md +++ b/docs/Versioning.md @@ -30,6 +30,7 @@ opset version implemented in that release. | ONNX Runtime release version | ONNX opset version
implemented in this release | ONNX ML opset version
implemented in this release | Supported ONNX IR version | |------------------------------|--------------------|----------------------|------------------| +| 0.2.1 | 8 | 1 | 3 | | 0.2.0 | 8 | 1 | 3 | | 0.1.5 | 8 | 1 | 3 | | 0.1.4 | 8 | 1 | 3 | diff --git a/docs/python/README.rst b/docs/python/README.rst index 9bb846deb9..74553f61a7 100644 --- a/docs/python/README.rst +++ b/docs/python/README.rst @@ -52,6 +52,11 @@ replaces *scikit-learn* to compute the predictions. Changes ------- +0.2.1 +^^^^^ + +C-API, Linux support for Dotnet Nuget package, Cuda 10.0 support (patch to 0.2.0). + 0.2.0 ^^^^^ diff --git a/onnxruntime/__init__.py b/onnxruntime/__init__.py index ca2e418d0b..f14d69330a 100644 --- a/onnxruntime/__init__.py +++ b/onnxruntime/__init__.py @@ -12,7 +12,7 @@ community, it supports traditional ML models as well as Deep Learning algorithms in the `ONNX-ML format `_. """ -__version__ = "0.2.0" +__version__ = "0.2.1" __author__ = "Microsoft" from onnxruntime.capi import onnxruntime_validation diff --git a/package/rpm/onnxruntime.spec b/package/rpm/onnxruntime.spec index 02d93ba62d..03fac28dbc 100644 --- a/package/rpm/onnxruntime.spec +++ b/package/rpm/onnxruntime.spec @@ -1,5 +1,5 @@ Name: onnxruntime -Version: 0.2.0 +Version: 0.2.1 Release: 1%{?dist} Summary: onnxruntime diff --git a/setup.py b/setup.py index 5283f8f79b..615b5af73c 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ with open(README) as f: # Setup setup( name=package_name, - version='0.2.0', + version='0.2.1', description='ONNX Runtime Python bindings', long_description=long_description, author='Microsoft Corporation',