Skip to content
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.

Commit

Permalink
release: cut the v0.10.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dkim-furiosa committed Mar 11, 2022
1 parent bdaf74d commit 7f1c46b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.0] - 2022-03-11

### Changed

- Upgrade `onnxrt-sys` to version 0.7.0, which supports Apple M1.

## [0.9.0] - 2022-01-13

### Changed
Expand Down Expand Up @@ -81,8 +87,9 @@ 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.9.0...HEAD
[0.9.0]: https://github.com/furiosa-ai/onnxrt/compare/0.7.0...0.9.0
[Unreleased]: https://github.com/furiosa-ai/onnxrt/compare/0.10.0...HEAD
[0.10.0]: https://github.com/furiosa-ai/onnxrt/compare/0.9.0...0.10.0
[0.9.0]: https://github.com/furiosa-ai/onnxrt/compare/0.8.0...0.9.0
[0.8.0]: https://github.com/furiosa-ai/onnxrt/compare/0.7.0...0.8.0
[0.7.0]: https://github.com/furiosa-ai/onnxrt/compare/0.6.0...0.7.0
[0.6.0]: https://github.com/furiosa-ai/onnxrt/compare/0.5.0...0.6.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "onnxrt"
version = "0.9.0"
version = "0.10.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"
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.9.0/onnxrt"
documentation = "https://furiosa-ai.github.io/onnxrt/0.10.0/onnxrt"
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# 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.9.0-blue.svg)](https://furiosa-ai.github.io/onnxrt/0.9.0/onnxrt/)
[![docs](https://img.shields.io/badge/docs-0.10.0-blue.svg)](https://furiosa-ai.github.io/onnxrt/0.10.0/onnxrt/)

OnnxRt provides mid-level Rust bindings to [the C API] for Microsoft's [ONNX
Runtime] v1.9.0.
Expand All @@ -21,7 +21,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
onnxrt = { git = "https://github.com/furiosa-ai/onnxrt", tag = "0.9.0" }
onnxrt = { git = "https://github.com/furiosa-ai/onnxrt", tag = "0.10.0" }
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! [`onnxruntime_c_api.h`](https://github.com/microsoft/onnxruntime/blob/v1.9.0/include/onnxruntime/core/session/onnxruntime_c_api.h)
#![doc(html_root_url = "https://furiosa-ai.github.io/onnxrt/0.9.0/onnxrt")]
#![doc(html_root_url = "https://furiosa-ai.github.io/onnxrt/0.10.0/onnxrt")]
#![warn(rust_2018_idioms)]

#[cfg(target_family = "unix")]
Expand Down

0 comments on commit 7f1c46b

Please sign in to comment.