From 09eed4e3e64001d9922ea7611963de9bd7a2bfc6 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Tue, 23 Jul 2024 01:53:38 +0900 Subject: [PATCH] Release 0.1.13 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e258e82..31179fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com ## [Unreleased] +## [0.1.13] - 2024-07-22 + - Open files in "binary" mode to match `std::fs::File`'s behavior. ([#12](https://github.com/taiki-e/semihosting/issues/12)) ## [0.1.12] - 2024-07-09 @@ -68,7 +70,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com Initial release -[Unreleased]: https://github.com/taiki-e/semihosting/compare/v0.1.12...HEAD +[Unreleased]: https://github.com/taiki-e/semihosting/compare/v0.1.13...HEAD +[0.1.13]: https://github.com/taiki-e/semihosting/compare/v0.1.12...v0.1.13 [0.1.12]: https://github.com/taiki-e/semihosting/compare/v0.1.11...v0.1.12 [0.1.11]: https://github.com/taiki-e/semihosting/compare/v0.1.10...v0.1.11 [0.1.10]: https://github.com/taiki-e/semihosting/compare/v0.1.9...v0.1.10 diff --git a/Cargo.toml b/Cargo.toml index 64d554f..d0b8ba1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "semihosting" -version = "0.1.12" #publish:version +version = "0.1.13" #publish:version edition = "2021" rust-version = "1.64" license = "Apache-2.0 OR MIT"