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.23.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dkim-furiosa committed Nov 10, 2023
1 parent 198bde2 commit 5e95298
Show file tree
Hide file tree
Showing 4 changed files with 234 additions and 227 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.23.0] - 2023-11-10

### Added

- Support ONNX Runtime v1.16.2.

## [0.22.0] - 2023-10-12

### Added
Expand Down Expand Up @@ -176,7 +182,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.22.0...HEAD
[Unreleased]: https://github.com/furiosa-ai/onnxrt/compare/0.23.0...HEAD
[0.23.0]: https://github.com/furiosa-ai/onnxrt/compare/0.22.0...0.23.0
[0.22.0]: https://github.com/furiosa-ai/onnxrt/compare/0.21.0...0.22.0
[0.21.0]: https://github.com/furiosa-ai/onnxrt/compare/0.20.0...0.21.0
[0.20.0]: https://github.com/furiosa-ai/onnxrt/compare/0.19.0...0.20.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.22.0"
version = "0.23.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.22.0/onnxrt"
documentation = "https://furiosa-ai.github.io/onnxrt/0.23.0/onnxrt"
edition = "2021"

[dependencies]
Expand Down
6 changes: 3 additions & 3 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.22.0-blue.svg)](https://furiosa-ai.github.io/onnxrt/0.22.0/onnxrt/)
[![docs](https://img.shields.io/badge/docs-0.23.0-blue.svg)](https://furiosa-ai.github.io/onnxrt/0.23.0/onnxrt/)

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

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

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

## Example
Expand Down
Loading

0 comments on commit 5e95298

Please sign in to comment.