Browse Source

release v0.1.3

Jorge Aparicio 8 years ago
parent
commit
36ae9a29c2
2 changed files with 16 additions and 4 deletions
  1. 15 3
      CHANGELOG.md
  2. 1 1
      Cargo.toml

+ 15 - 3
CHANGELOG.md

@@ -5,6 +5,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).
 
 ## [Unreleased]
 
+## [v0.1.3] - 2017-02-27
+
+### Added
+
+- A family of `ewrite` functions and `ehprint!` macros to write to the host's
+  stderr.
+
+### Fixed
+
+- `write_all` logic when a single write doesn't write all the buffer bytes
+
 ## [v0.1.2] - 2017-02-15
 
 ### Fixed
@@ -22,6 +33,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
 
 - Initial release
 
-[Unreleased]: https://github.com/japaric/trust/compare/v0.1.2...HEAD
-[v0.1.2]: https://github.com/japaric/trust/compare/v0.1.1...v0.1.2
-[v0.1.1]: https://github.com/japaric/trust/compare/v0.1.0...v0.1.1
+[Unreleased]: https://github.com/japaric/cortex-m-semihosting/compare/v0.1.3...HEAD
+[v0.1.3]: https://github.com/japaric/cortex-m-semihosting/compare/v0.1.2...v0.1.3
+[v0.1.2]: https://github.com/japaric/cortex-m-semihosting/compare/v0.1.1...v0.1.2
+[v0.1.1]: https://github.com/japaric/cortex-m-semihosting/compare/v0.1.0...v0.1.1

+ 1 - 1
Cargo.toml

@@ -6,6 +6,6 @@ keywords = ["semihosting", "arm", "cortex-m"]
 license = "MIT OR Apache-2.0"
 name = "cortex-m-semihosting"
 repository = "https://github.com/japaric/cortex-m-semihosting"
-version = "0.1.2"
+version = "0.1.3"
 
 [dependencies]