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.21.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dkim-furiosa committed Apr 24, 2024
1 parent c28e608 commit ad70bd7
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 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.21.1] - 2024-04-24

### Changed

- Reduce dependencies by enabling only necessary features of `zip`.

## [0.21.0] - 2023-11-21

### Added
Expand Down Expand Up @@ -150,7 +156,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Support ONNX Runtime v1.7.

[Unreleased]: https://github.com/furiosa-ai/onnxrt-sys/compare/0.21.0...HEAD
[Unreleased]: https://github.com/furiosa-ai/onnxrt-sys/compare/0.21.1...HEAD
[0.21.1]: https://github.com/furiosa-ai/onnxrt-sys/releases/tag/0.21.1
[0.21.0]: https://github.com/furiosa-ai/onnxrt-sys/releases/tag/0.21.0
[0.20.0]: https://github.com/furiosa-ai/onnxrt-sys/releases/tag/0.20.0
[0.19.0]: https://github.com/furiosa-ai/onnxrt-sys/releases/tag/0.19.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-sys"
version = "0.21.0"
version = "0.21.1"
authors = ["FuriosaAI, Inc."]
description = "OnnxRt-sys provides low-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-sys"
keywords = ["onnx", "neuralnetworks", "ffi", "bindings"]
categories = ["science", "external-ffi-bindings"]
documentation = "https://furiosa-ai.github.io/onnxrt-sys/0.21.0/onnxrt-sys"
documentation = "https://furiosa-ai.github.io/onnxrt-sys/0.21.1/onnxrt-sys"
edition = "2021"

[features]
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-sys

[![build status](https://github.com/furiosa-ai/onnxrt-sys/actions/workflows/build.yml/badge.svg)](https://github.com/furiosa-ai/onnxrt-sys/actions/workflows/build.yml?query=branch%3Amain)
[![docs](https://img.shields.io/badge/docs-0.21.0-blue.svg)](https://furiosa-ai.github.io/onnxrt-sys/0.21.0/onnxrt_sys/)
[![docs](https://img.shields.io/badge/docs-0.21.1-blue.svg)](https://furiosa-ai.github.io/onnxrt-sys/0.21.1/onnxrt_sys/)

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

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

## Example
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://furiosa-ai.github.io/onnxrt-sys/0.21.0/onnxrt_sys")]
#![doc(html_root_url = "https://furiosa-ai.github.io/onnxrt-sys/0.21.1/onnxrt_sys")]
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
Expand Down

0 comments on commit ad70bd7

Please sign in to comment.