aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jorge Aparicio <jorge@japaric.io> 2017-06-16 19:18:30 -0500
committerGravatar Jorge Aparicio <jorge@japaric.io> 2017-06-16 19:18:30 -0500
commitcba4befc6d4c9cf630839a8402330748d82c45e9 (patch)
treee3b4f409ebafbb5958c36a942d23714a82e75da7
parente63e13915d46d97dec4e87a1bd4a9e2ef36936f4 (diff)
downloadcortex-m-cba4befc6d4c9cf630839a8402330748d82c45e9.tar.gz
cortex-m-cba4befc6d4c9cf630839a8402330748d82c45e9.tar.zst
cortex-m-cba4befc6d4c9cf630839a8402330748d82c45e9.zip
v0.2.11v0.2.11
-rw-r--r--CHANGELOG.md14
-rw-r--r--Cargo.toml2
2 files changed, 14 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 75616b4..e52c26e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
+## [v0.2.11] - 2017-06-16
+
+### Added
+
+- An API to maintain the different caches (DCache, ICache) on Cortex M7 devices.
+
+### Fixed
+
+- the definition of the `ehprint!` macro.
+- the implementation of the FPU API.
+
## [v0.2.10] - 2017-06-05
### Added
@@ -296,7 +307,8 @@ fn main() {
- Functions to get the vector table
- Wrappers over miscellaneous instructions like `bkpt`
-[Unreleased]: https://github.com/japaric/cortex-m/compare/v0.2.10...HEAD
+[Unreleased]: https://github.com/japaric/cortex-m/compare/v0.2.11...HEAD
+[v0.2.11]: https://github.com/japaric/cortex-m/compare/v0.2.10...v0.2.11
[v0.2.10]: https://github.com/japaric/cortex-m/compare/v0.2.9...v0.2.10
[v0.2.9]: https://github.com/japaric/cortex-m/compare/v0.2.8...v0.2.9
[v0.2.8]: https://github.com/japaric/cortex-m/compare/v0.2.7...v0.2.8
diff --git a/Cargo.toml b/Cargo.toml
index 0c4bab6..f52e721 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "register", "peripheral"]
license = "MIT OR Apache-2.0"
name = "cortex-m"
repository = "https://github.com/japaric/cortex-m"
-version = "0.2.10"
+version = "0.2.11"
[dependencies]
aligned = "0.1.1"