Skip to content

Commit

Permalink
Merge pull request #2 from RusPiRo/issue/failed_doc
Browse files Browse the repository at this point in the history
fix failed doc build in doc.rs
  • Loading branch information
2ndTaleStudio authored Aug 9, 2019
2 parents 655e3b6 + cbca956 commit 4cc60d7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "ruspiro-interrupt"
authors = ["André Borrmann <[email protected]>"]
version = "0.1.0" # remember to update html_root_url
version = "0.1.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"
repository = "https://github.com/RusPiRo/ruspiro-interrupt/tree/v0.1.0"
documentation = "https://docs.rs/ruspiro-interrupt/0.1.0"
repository = "https://github.com/RusPiRo/ruspiro-interrupt/tree/v0.1.1"
documentation = "https://docs.rs/ruspiro-interrupt/0.1.1"
readme = "README.md"
keywords = ["RusPiRo", "baremetal", "raspberrypi", "interrupt"]
categories = ["no-std", "embedded"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ script providing all the necessary linker symbols and entrypoints calling into t
To use the crate just add the following dependency to your ``Cargo.toml`` file:
```
[dependencies]
ruspiro-interrupt = "0.1.0"
ruspiro-interrupt = "0.1.1"
```

Once done the access to the features/attribute of the interrupt crate is available in your rust files like so:
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Author: André Borrmann
* License: Apache License 2.0
**********************************************************************************************************************/
#![doc(html_root_url = "https://docs.rs/ruspiro-interrupt/0.1.0")]
#![doc(html_root_url = "https://docs.rs/ruspiro-interrupt/0.1.1")]
#![no_std]
#![feature(asm)]
#![feature(linkage)]
Expand All @@ -26,7 +26,7 @@
//! // implement stuff that shall be executed if the interrupt is raised...
//! // be careful when this code uses spinlocks as this might lead to dead-locks if the
//! // executing code interrupted currently helds a lock the code inside this handler tries to aquire the same one
//! println('timer interrupt raised');
//! println!("timer interrupt raised");
//! }
//!
//! fn demo() {
Expand Down

0 comments on commit 4cc60d7

Please sign in to comment.