Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
crate: prepare for version 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
luojia65 committed Oct 9, 2022
1 parent 75140cb commit bf6ebe7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
17 changes: 11 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## [Unreleased]

## [0.0.2] - 2022-10-10

In this version we changed API style to trait based type parameters, which would make it easier to
check parameter types at runtime to reduce errors. If user choose to use `integer-impls` feature,
it would fall back to older style functions using integer types.

### Added

- Trait based type parameter for system reset, pmu and base extension
- Trait based type parameter for all extensions
- Feature `integer-impls` to allow fast prototyping with sbi-rt crate
- Feature `legacy` to gate SBI legacy extension
- Documents on various functions
Expand All @@ -20,7 +26,6 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Function `probe_extension` now returns an `ExtensionInfo` value
- Function `pmu_num_counters` returns a `usize` value

### Fixed

[Unreleased]: https://github.com/rustsbi/rustsbi/compare/v0.0.1...HEAD
[0.0.1]: https://github.com/rustsbi/rustsbi/releases/tag/v0.0.1
[Unreleased]: https://github.com/rustsbi/sbi-rt/compare/v0.0.2...HEAD
[0.0.2]: https://github.com/rustsbi/sbi-rt/compare/v0.0.1...v0.0.2
[0.0.1]: https://github.com/rustsbi/sbi-rt/releases/tag/v0.0.1
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "sbi-rt"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
description = "Runtime library for supervisors to call RISC-V Supervisor Binary Interface (RISC-V SBI)"
categories = ["os", "embedded", "hardware-support", "no-std"]
keywords = ["riscv", "sbi", "rustsbi"]
authors = [
"YdrMaster <ydrmaster@hotmail.com>",
"YdrMaster <ydrml@hotmail.com>",
"Luo Jia <me@luojia.cc>",
]
repository = "https://github.com/rustsbi/sbi-rt"
Expand Down

0 comments on commit bf6ebe7

Please sign in to comment.