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

## [Unreleased]

## [0.2.1] - 2021-04-01

### Fixed

- Clean up `clippy::upper_case_acronyms` warnings.
Expand All @@ -23,6 +25,7 @@ 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.2.0...HEAD
[Unreleased]: https://github.com/furiosa-ai/onnxrt/compare/0.2.1...HEAD
[0.2.1]: https://github.com/furiosa-ai/onnxrt/compare/0.2.0...0.2.1
[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,14 +1,14 @@
[package]
name = "onnxrt"
version = "0.2.0"
version = "0.2.1"
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.2.0/onnxrt"
documentation = "https://furiosa-ai.github.io/onnxrt/0.2.1/onnxrt"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Furiosa Inc.
Copyright (c) 2021 FuriosaAI Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# 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.2.0-blue.svg)](https://furiosa-ai.github.io/onnxrt/0.2.0/onnxrt/)
[![docs](https://img.shields.io/badge/docs-0.2.1-blue.svg)](https://furiosa-ai.github.io/onnxrt/0.2.1/onnxrt/)

OnnxRt provides mid-level Rust bindings to [the C API] for Microsoft's [ONNX
Runtime] v1.6.
Expand All @@ -13,15 +13,15 @@ Runtime] v1.6.

### Rust

This program targets the latest stable version of Rust 1.50.0 or later.
This program targets the latest stable version of Rust 1.51.0 or later.

## Usage

Add this to your `Cargo.toml`:

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

## Example
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! [`onnxruntime_c_api.h`](https://github.com/microsoft/onnxruntime/blob/v1.6.0/include/onnxruntime/core/session/onnxruntime_c_api.h)
#![doc(html_root_url = "https://furiosa-ai.github.io/onnxrt/0.2.0")]
#![doc(html_root_url = "https://furiosa-ai.github.io/onnxrt/0.2.1")]
#![warn(rust_2018_idioms)]

#[cfg(target_family = "unix")]
Expand Down

0 comments on commit f6e9cd1

Please sign in to comment.