From 7fa559eeab98bb21f7378c4344da81b805b823d8 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Sun, 7 May 2017 17:17:52 -0500 Subject: [PATCH] v0.1.2 --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 3 ++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc7675d..8805e98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## v0.1.2 - 2017-05-07 + +### Fixed + +- .gdbinit: jump to reset handler after loading the program. + ## v0.1.1 - 2017-04-27 ### Changed @@ -17,5 +23,6 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Initial release -[Unreleased]: https://github.com/japaric/cortex-m-quickstart/compare/v0.1.1...HEAD +[Unreleased]: https://github.com/japaric/cortex-m-quickstart/compare/v0.1.2...HEAD +[v0.1.2]: https://github.com/japaric/cortex-m-quickstart/compare/v0.1.1...v0.1.2 [v0.1.1]: https://github.com/japaric/cortex-m-quickstart/compare/v0.1.0...v0.1.1 diff --git a/Cargo.toml b/Cargo.toml index 3bf3b0a..1c74db2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,12 @@ [package] authors = ["Jorge Aparicio "] +categories = ["embedded", "no-std"] description = "A template for building applications for ARM Cortex-M microcontrollers" keywords = ["arm", "cortex-m", "template"] license = "MIT OR Apache-2.0" name = "cortex-m-quickstart" repository = "https://github.com/japaric/cortex-m-quickstart" -version = "0.1.1" +version = "0.1.2" [dependencies] cortex-m = "0.2.4"