Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rel 0.1.5 #70

Merged
merged 3 commits into from
Dec 1, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Change version to 0.1.5
pranavsharma committed Nov 30, 2018
commit b05af4d58d26bca28778ba982952cd1dbc7cf5b6
2 changes: 1 addition & 1 deletion VERSION_NUMBER
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.4
0.1.5
1 change: 1 addition & 0 deletions docs/Versioning.md
Original file line number Diff line number Diff line change
@@ -33,4 +33,5 @@ opset version implemented in that release.

| 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 |
|------------------------------|--------------------|----------------------|------------------|
| 0.1.5 | 8 | 1 | 3 |
| 0.1.4 | 8 | 1 | 3 |
5 changes: 5 additions & 0 deletions docs/python/README.rst
Original file line number Diff line number Diff line change
@@ -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
^^^^^

2 changes: 1 addition & 1 deletion onnxruntime/__init__.py
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
as Deep Learning algorithms in the
`ONNX-ML format <https://github.com/onnx/onnx/blob/master/docs/IR.md>`_.
"""
__version__ = "0.1.4"
__version__ = "0.1.5"
__author__ = "Microsoft"

from onnxruntime.capi import onnxruntime_validation
4 changes: 2 additions & 2 deletions package/rpm/onnxruntime.spec
Original file line number Diff line number Diff line change
@@ -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*
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ def finalize_options(self):
# 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',