aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md3
-rw-r--r--Cargo.toml2
-rw-r--r--macros/Cargo.toml2
3 files changed, 4 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 189e02b8..7b45a0b0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -25,7 +25,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- The initialization function can now be written as `fn init() ->
init::LateResources` when late resources are used. This is preferred over the
- old `fn init()` form.
+ old `fn init()` form. See the section on late resources (resources chapter) in
+ the book for more details.
### Fixed
diff --git a/Cargo.toml b/Cargo.toml
index 79f9430f..73be2dd0 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -36,7 +36,7 @@ required-features = ["timer-queue"]
[dependencies]
cortex-m = "0.5.8"
cortex-m-rt = "0.6.7"
-cortex-m-rtfm-macros = { path = "macros", version = "0.4.0" }
+cortex-m-rtfm-macros = { path = "macros", version = "0.4.1" }
heapless = "0.4.1"
owned-singleton = "0.1.0"
diff --git a/macros/Cargo.toml b/macros/Cargo.toml
index b35ca1d8..31fa8428 100644
--- a/macros/Cargo.toml
+++ b/macros/Cargo.toml
@@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
name = "cortex-m-rtfm-macros"
readme = "../README.md"
repository = "https://github.com/japaric/cortex-m-rtfm"
-version = "0.4.0"
+version = "0.4.1"
[lib]
proc-macro = true