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.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dkim-furiosa committed Jan 5, 2022
1 parent 8a49b09 commit 05fbb38
Show file tree
Hide file tree
Showing 4 changed files with 204 additions and 154 deletions.
9 changes: 8 additions & 1 deletion 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.8.0] - 2022-01-05

### Added

- Support ONNX Runtime v1.9.0.

## [0.7.0] - 2021-09-24

### Changed
Expand Down Expand Up @@ -68,7 +74,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.7.0...HEAD
[Unreleased]: https://github.com/furiosa-ai/onnxrt/compare/0.8.0...HEAD
[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
[0.5.0]: https://github.com/furiosa-ai/onnxrt/compare/0.4.0...0.5.0
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "onnxrt"
version = "0.7.0"
authors = ["FuriosaAI Inc."]
version = "0.8.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.7.0/onnxrt"
documentation = "https://furiosa-ai.github.io/onnxrt/0.8.0/onnxrt"
edition = "2018"

[dependencies]
once_cell = "1.9.0"
onnxrt-sys = { git = "https://github.com/furiosa-ai/onnxrt-sys", tag = "0.4.0" }
onnxrt-sys = { git = "https://github.com/furiosa-ai/onnxrt-sys", tag = "0.5.0" }
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.7.0-blue.svg)](https://furiosa-ai.github.io/onnxrt/0.7.0/onnxrt/)
[![docs](https://img.shields.io/badge/docs-0.8.0-blue.svg)](https://furiosa-ai.github.io/onnxrt/0.8.0/onnxrt/)

OnnxRt provides mid-level Rust bindings to [the C API] for Microsoft's [ONNX
Runtime] v1.8.1.
Runtime] v1.9.0.

[the C API]: https://www.onnxruntime.ai/docs/reference/api/c-api.html
[ONNX Runtime]: https://www.onnxruntime.ai/
Expand All @@ -13,15 +13,15 @@ Runtime] v1.8.1.

### Rust

This program targets the latest stable version of Rust 1.47.0 or later.
This program targets the latest stable version of Rust 1.56.1 or later.

## Usage

Add this to your `Cargo.toml`:

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

## Example
Expand Down
Loading

0 comments on commit 05fbb38

Please sign in to comment.