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.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dkim-furiosa committed Mar 15, 2021
1 parent c0df40a commit ab6f76c
Show file tree
Hide file tree
Showing 4 changed files with 199 additions and 121 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0] - 2021-03-15

### Added

- Support ONNX Runtime v1.6.

## [0.1.0] - 2021-03-15

### Added

- Support ONNX Runtime v1.5.

[Unreleased]: https://github.com/furiosa-ai/onnxrt/compare/0.1.0...HEAD
[Unreleased]: https://github.com/furiosa-ai/onnxrt/compare/0.2.0...HEAD
[0.2.0]: https://github.com/furiosa-ai/onnxrt/compare/0.1.0...0.2.0
[0.1.0]: https://github.com/furiosa-ai/onnxrt/releases/tag/0.1.0
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "onnxrt"
version = "0.1.0"
version = "0.2.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"
Expand All @@ -12,4 +12,4 @@ edition = "2018"

[dependencies]
once_cell = "1.7.2"
onnxruntime-sys = "0.0.10"
onnxruntime-sys = "0.0.11"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![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)

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

[the C API]: https://www.onnxruntime.ai/docs/reference/api/c-api.html
[ONNX Runtime]: https://www.onnxruntime.ai/
Expand All @@ -19,7 +19,7 @@ Add this to your `Cargo.toml`:

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

## Example
Expand Down
Loading

0 comments on commit ab6f76c

Please sign in to comment.