-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from RusPiRo/development
Prepare Release and crates.io publishing
- Loading branch information
Showing
3 changed files
with
13 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
# Changelog | ||
|
||
## :banana: v0.4.0 | ||
## :cat: v0.4.1 | ||
|
||
- ### :bulb: Features | ||
|
||
List the features that were added with this release. | ||
Rework the interrupt crate to support sync and async interrupt processing. Each interrupt handler implementation will recieve a `Sender` of a specific channel that may have been passed to the interrupt handling while activating a specific interrupt. The signature of a interrupt handling function will thus now look like: | ||
|
||
```rust | ||
#[IrqHandler(Foo)] | ||
fn foo_handler(tx: Option<IsrSender<Box<dyn Any>>>) { } | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "ruspiro-interrupt" | ||
authors = ["Andre Borrmann <[email protected]>"] | ||
version = "0.4.0" # remember to update html_root_url | ||
version = "0.4.1" # remember to update html_root_url | ||
description = """ | ||
Providing a simple and convinient way to implement interrupt handler for Raspberry Pi interrupts. | ||
""" | ||
license = "Apache-2.0 OR MIT" | ||
repository = "https://github.com/RusPiRo/ruspiro-interrupt/tree/v||VERSION||" | ||
documentation = "https://docs.rs/ruspiro-interrupt/||VERSION||" | ||
readme = "README.md" | ||
readme = "../README.md" | ||
keywords = ["RusPiRo", "baremetal", "raspberrypi", "interrupt"] | ||
categories = ["no-std", "embedded"] | ||
edition = "2018" | ||
|