aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md9
-rw-r--r--Cargo.toml2
2 files changed, 7 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 19078d9..3e1a51a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,18 +7,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
+## [v0.1.2] - 2016-10-04
+
### Fixed
- Read/write Operations on registers (lr, cr, msp, etc.) which were reversed.
-## [v0.1.1] - 2016-10-03
+## [v0.1.1] - 2016-10-03 [YANKED]
### Changed
- Small, non user visible change to make this crate compile further for $HOST (e.g. x86_64) with the
goal of making it possible to test, on the HOST, downstream crates that depend on this one.
-## [v0.1.0] - 2016-09-27
+## v0.1.0 - 2016-09-27 [YANKED]
### Added
@@ -28,5 +30,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Functions to get the vector table
- Wrappers over miscellaneous instructions like `bkpt`
-[Unreleased]: https://github.com/japaric/rustc-cfg/compare/v0.1.1...HEAD
+[Unreleased]: https://github.com/japaric/rustc-cfg/compare/v0.1.2...HEAD
+[v0.1.2]: https://github.com/japaric/rustc-cfg/compare/v0.1.1...v0.1.2
[v0.1.1]: https://github.com/japaric/rustc-cfg/compare/v0.1.0...v0.1.1
diff --git a/Cargo.toml b/Cargo.toml
index 9ee23d4..8e17473 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,7 +6,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.1.1"
+version = "0.1.2"
[dependencies]
volatile-register = "0.1.0"