From ad70bd7c76fb3a178f618e2ddefa1fc3a5e0896e Mon Sep 17 00:00:00 2001 From: Deokhwan Kim Date: Wed, 24 Apr 2024 18:27:18 +0900 Subject: [PATCH] release: cut the v0.21.1 release --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 4 ++-- README.md | 4 ++-- src/lib.rs | 2 +- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79a259c4..14bfb614 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/Cargo.toml b/Cargo.toml index b0e80ce8..7ad9e7ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [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" @@ -8,7 +8,7 @@ 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] diff --git a/README.md b/README.md index 9dbc87d7..d154238f 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 diff --git a/src/lib.rs b/src/lib.rs index e6390ad8..0b01915b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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)]