Skip to content

Commit e12e4c4

Browse files
author
Raymond Yang
authoredJan 31, 2019
Bump up version number for 0.2.1 release (#420)
1 parent 75e950c commit e12e4c4

File tree

6 files changed

+10
-4
lines changed

6 files changed

+10
-4
lines changed
 

‎VERSION_NUMBER

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.0
1+
0.2.1

‎docs/Versioning.md

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ opset version implemented in that release.
3030

3131
| 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 |
3232
|------------------------------|--------------------|----------------------|------------------|
33+
| 0.2.1 | 8 | 1 | 3 |
3334
| 0.2.0 | 8 | 1 | 3 |
3435
| 0.1.5 | 8 | 1 | 3 |
3536
| 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.2.1
56+
^^^^^
57+
58+
C-API, Linux support for Dotnet Nuget package, Cuda 10.0 support (patch to 0.2.0).
59+
5560
0.2.0
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.2.0"
15+
__version__ = "0.2.1"
1616
__author__ = "Microsoft"
1717

1818
from onnxruntime.capi import onnxruntime_validation

‎package/rpm/onnxruntime.spec

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

‎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.2.0',
56+
version='0.2.1',
5757
description='ONNX Runtime Python bindings',
5858
long_description=long_description,
5959
author='Microsoft Corporation',

0 commit comments

Comments
 (0)
Please sign in to comment.