diff --git a/VERSION_NUMBER b/VERSION_NUMBER index 446ba66e7e..def9a01548 100644 --- a/VERSION_NUMBER +++ b/VERSION_NUMBER @@ -1 +1 @@ -0.1.4 \ No newline at end of file +0.1.5 \ No newline at end of file diff --git a/docs/Versioning.md b/docs/Versioning.md index d4eead6945..540c6a8d2e 100644 --- a/docs/Versioning.md +++ b/docs/Versioning.md @@ -33,4 +33,5 @@ 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.1.5 | 8 | 1 | 3 | | 0.1.4 | 8 | 1 | 3 | diff --git a/docs/python/README.rst b/docs/python/README.rst index bf84a2b32c..b6dc2fd231 100644 --- a/docs/python/README.rst +++ b/docs/python/README.rst @@ -52,6 +52,11 @@ replaces *scikit-learn* to compute the predictions. Changes ------- +0.1.5 +^^^^^ + +GA release as part of open sourcing onnxruntime (patch to 0.1.4). + 0.1.4 ^^^^^ diff --git a/onnxruntime/__init__.py b/onnxruntime/__init__.py index e7f265f086..f517aee336 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.1.4" +__version__ = "0.1.5" __author__ = "Microsoft" from onnxruntime.capi import onnxruntime_validation diff --git a/package/rpm/onnxruntime.spec b/package/rpm/onnxruntime.spec index 32aebb7d9b..72b9dacc79 100644 --- a/package/rpm/onnxruntime.spec +++ b/package/rpm/onnxruntime.spec @@ -1,5 +1,5 @@ Name: onnxruntime -Version: 0.1.4 +Version: 0.1.5 Release: 1%{?dist} Summary: onnxruntime @@ -50,7 +50,7 @@ cd .. %files %license LICENSE -%doc docs/* +%doc docs/* %doc ThirdPartyNotices.txt %{_bindir}/onnx_test_runner %{_libdir}/libonnxruntime.so* diff --git a/setup.py b/setup.py index 812886f0bd..33a459efea 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ with open(README) as f: # Setup setup( name=package_name, - version='0.1.4', + version='0.1.5', description='ONNX Runtime Runtime Python bindings', long_description=long_description, author='Microsoft Corporation',