Skip to content

Commit 3a7ecc5

Browse files
committed
Redo change version number to 0.1.5.
1 parent 13181b8 commit 3a7ecc5

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

VERSION_NUMBER

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.4
1+
0.1.5

docs/Versioning.md

+1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,5 @@ opset version implemented in that release.
3333

3434
| ONNX Runtime release version | ONNX opset version <br> implemented in this release | ONNX ML opset version <br> implemented in this release | Supported ONNX IR version |
3535
|------------------------------|--------------------|----------------------|------------------|
36+
| 0.1.5 | 8 | 1 | 3 |
3637
| 0.1.4 | 8 | 1 | 3 |

docs/python/README.rst

+5
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ replaces *scikit-learn* to compute the predictions.
5252
Changes
5353
-------
5454

55+
0.1.5
56+
^^^^^
57+
58+
GA release as part of open sourcing onnxruntime (patch for 0.1.4).
59+
5560
0.1.4
5661
^^^^^
5762

onnxruntime/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
as Deep Learning algorithms in the
1313
`ONNX-ML format <https://github.com/onnx/onnx/blob/master/docs/IR.md>`_.
1414
"""
15-
__version__ = "0.1.4"
15+
__version__ = "0.1.5"
1616
__author__ = "Microsoft"
1717

1818
from onnxruntime.capi import onnxruntime_validation

package/rpm/onnxruntime.spec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: onnxruntime
2-
Version: 0.1.4
2+
Version: 0.1.5
33
Release: 1%{?dist}
44
Summary: onnxruntime
55

@@ -50,7 +50,7 @@ cd ..
5050

5151
%files
5252
%license LICENSE
53-
%doc docs/*
53+
%doc docs/*
5454
%doc ThirdPartyNotices.txt
5555
%{_bindir}/onnx_test_runner
5656
%{_libdir}/libonnxruntime.so*

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def finalize_options(self):
5353
# Setup
5454
setup(
5555
name=package_name,
56-
version='0.1.4',
56+
version='0.1.5',
5757
description='ONNX Runtime Runtime Python bindings',
5858
long_description=long_description,
5959
author='Microsoft Corporation',

0 commit comments

Comments
 (0)