From d06a0c37a71ac31029b74622244679701e303458 Mon Sep 17 00:00:00 2001 From: Deokhwan Kim Date: Mon, 23 Aug 2021 16:06:18 +0900 Subject: [PATCH] release: cut the v0.6.0 release --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 6 +++--- README.md | 6 +++--- src/lib.rs | 2 +- 4 files changed, 15 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f373b5c..713e8a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0] - 2021-08-23 + +### Added + +- Support ONNX Runtime v1.8.1. + ## [0.5.0] - 2021-08-22 ### Added @@ -56,7 +62,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Support ONNX Runtime v1.5. -[Unreleased]: https://github.com/furiosa-ai/onnxrt/compare/0.5.0...HEAD +[Unreleased]: https://github.com/furiosa-ai/onnxrt/compare/0.6.0...HEAD +[0.6.0]: https://github.com/furiosa-ai/onnxrt/compare/0.5.0...0.6.0 [0.5.0]: https://github.com/furiosa-ai/onnxrt/compare/0.4.0...0.5.0 [0.4.0]: https://github.com/furiosa-ai/onnxrt/compare/0.3.1...0.4.0 [0.3.1]: https://github.com/furiosa-ai/onnxrt/compare/0.3.0...0.3.1 diff --git a/Cargo.toml b/Cargo.toml index 913a279..99d780b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "onnxrt" -version = "0.5.0" +version = "0.6.0" authors = ["FuriosaAI Inc."] description = "OnnxRt provides mid-level Rust bindings to the C API for Microsoft's ONNX Runtime." license = "MIT OR Apache-2.0" @@ -8,9 +8,9 @@ readme = "README.md" repository = "https://github.com/furiosa-ai/onnxrt" keywords = ["onnx", "neuralnetworks", "ffi", "bindings"] categories = ["science", "external-ffi-bindings"] -documentation = "https://furiosa-ai.github.io/onnxrt/0.5.0/onnxrt" +documentation = "https://furiosa-ai.github.io/onnxrt/0.6.0/onnxrt" edition = "2018" [dependencies] once_cell = "1.8.0" -onnxrt-sys = { git = "https://github.com/furiosa-ai/onnxrt-sys", tag = "0.2.0" } +onnxrt-sys = { git = "https://github.com/furiosa-ai/onnxrt-sys", tag = "0.3.0" } diff --git a/README.md b/README.md index e829b96..0b13c12 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # OnnxRt [![build status](https://github.com/furiosa-ai/onnxrt/actions/workflows/build.yml/badge.svg)](https://github.com/furiosa-ai/onnxrt/actions/workflows/build.yml?query=branch%3Amain) -[![docs](https://img.shields.io/badge/docs-0.5.0-blue.svg)](https://furiosa-ai.github.io/onnxrt/0.5.0/onnxrt/) +[![docs](https://img.shields.io/badge/docs-0.6.0-blue.svg)](https://furiosa-ai.github.io/onnxrt/0.6.0/onnxrt/) OnnxRt provides mid-level Rust bindings to [the C API] for Microsoft's [ONNX -Runtime] v1.8.0. +Runtime] v1.8.1. [the C API]: https://www.onnxruntime.ai/docs/reference/api/c-api.html [ONNX Runtime]: https://www.onnxruntime.ai/ @@ -21,7 +21,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -onnxrt = { git = "https://github.com/furiosa-ai/onnxrt", tag = "0.5.0" } +onnxrt = { git = "https://github.com/furiosa-ai/onnxrt", tag = "0.6.0" } ``` ## Example diff --git a/src/lib.rs b/src/lib.rs index b2d2bdf..2ca4d5b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ //! [`onnxruntime_c_api.h`](https://github.com/microsoft/onnxruntime/blob/v1.8.0/include/onnxruntime/core/session/onnxruntime_c_api.h) -#![doc(html_root_url = "https://furiosa-ai.github.io/onnxrt/0.5.0/onnxrt")] +#![doc(html_root_url = "https://furiosa-ai.github.io/onnxrt/0.6.0/onnxrt")] #![warn(rust_2018_idioms)] #[cfg(target_family = "unix")]