aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md10
-rw-r--r--Cargo.toml4
-rw-r--r--macros/Cargo.toml2
3 files changed, 12 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 741738fb..ff6c1279 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
+## [v0.3.3] - 2018-08-24
+
+### Fixed
+
+- Compilation with latest nightly
+
## [v0.3.2] - 2018-04-16
### Added
@@ -94,7 +100,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Initial release
-[Unreleased]: https://github.com/japaric/cortex-m-rtfm/compare/v0.3.1...HEAD
+[Unreleased]: https://github.com/japaric/cortex-m-rtfm/compare/v0.3.3...HEAD
+[v0.3.3]: https://github.com/japaric/cortex-m-rtfm/compare/v0.3.2...v0.3.3
+[v0.3.2]: https://github.com/japaric/cortex-m-rtfm/compare/v0.3.1...v0.3.2
[v0.3.1]: https://github.com/japaric/cortex-m-rtfm/compare/v0.3.0...v0.3.1
[v0.3.0]: https://github.com/japaric/cortex-m-rtfm/compare/v0.2.2...v0.3.0
[v0.2.2]: https://github.com/japaric/cortex-m-rtfm/compare/v0.2.1...v0.2.2
diff --git a/Cargo.toml b/Cargo.toml
index fdb1d18d..15f73945 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -10,11 +10,11 @@ keywords = ["arm", "cortex-m"]
license = "MIT OR Apache-2.0"
name = "cortex-m-rtfm"
repository = "https://github.com/japaric/cortex-m-rtfm"
-version = "0.3.2"
+version = "0.3.3"
[dependencies]
cortex-m = "0.4.0"
-cortex-m-rtfm-macros = { path = "macros", version = "0.3.1" }
+cortex-m-rtfm-macros = { path = "macros", version = "0.3.2" }
rtfm-core = "0.2.0"
untagged-option = "0.1.1"
diff --git a/macros/Cargo.toml b/macros/Cargo.toml
index 794b30be..410be2fc 100644
--- a/macros/Cargo.toml
+++ b/macros/Cargo.toml
@@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m"]
license = "MIT OR Apache-2.0"
name = "cortex-m-rtfm-macros"
repository = "https://github.com/japaric/cortex-m-rtfm"
-version = "0.3.1"
+version = "0.3.2"
[dependencies]
failure = "0.1.1"