Jorge Aparicio il y a 7 ans
Parent
commit
71d0221888
2 fichiers modifiés avec 26 ajouts et 2 suppressions
  1. 25 1
      CHANGELOG.md
  2. 1 1
      Cargo.toml

+ 25 - 1
CHANGELOG.md

@@ -5,6 +5,29 @@ This project adheres to [Semantic Versioning](http://semver.org/).
 
 ## [Unreleased]
 
+## [v0.2.0] - 2017-07-07
+
+### Added
+
+- `exit` and `report_exception` syscalls
+
+- `HStdout` and `HStderr` structs that represent handles to the host stdout and
+  stderr stream respectively.
+
+### Changed
+
+- [breaking-change] The `io` module has been renamed to `hio` to reflect that
+  this is I/O *on the host*.
+
+### Removed
+
+- [breaking-change] the family of `write` functions in the `io` module. Instead
+  use `HStdout` / `HStderr` and its `write_all` method and `fmt::Write`
+  implementation.
+
+- [breaking-change] the `hprint!` family of macros. Instead use `HStdout` and
+  the standard `write!` macro.
+
 ## [v0.1.3] - 2017-02-27
 
 ### Added
@@ -33,7 +56,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
 
 - Initial release
 
-[Unreleased]: https://github.com/japaric/cortex-m-semihosting/compare/v0.1.3...HEAD
+[Unreleased]: https://github.com/japaric/cortex-m-semihosting/compare/v0.2.0...HEAD
+[v0.2.0]: https://github.com/japaric/cortex-m-semihosting/compare/v0.1.3...v0.2.0
 [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.3"
+version = "0.2.0"
 
 [dependencies]