From d23b2d997999c99d36d348e136ffc9da3429fe5d Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Mon, 6 Jan 2025 23:31:35 +0900 Subject: [PATCH] Release 0.1.18 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d453a8c..0427b97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com ## [Unreleased] +## [0.1.18] - 2025-01-06 + - Add `io::ErrorKind::CrossesDevices` variant to reflect [upstream stabilization in Rust 1.85](https://github.com/rust-lang/rust/pull/130209). ([0a09ce5](https://github.com/taiki-e/semihosting/commit/0a09ce540784739f972e76fe719a573a744b98eb)) - Add `io::ErrorKind::QuotaExceeded` variant to reflect [upstream stabilization in Rust 1.85](https://github.com/rust-lang/rust/pull/130254). ([36b069a](https://github.com/taiki-e/semihosting/commit/36b069ab0e56b25bb64b5d7390ece5ce41534c94)) @@ -96,7 +98,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.17...HEAD +[Unreleased]: https://github.com/taiki-e/semihosting/compare/v0.1.18...HEAD +[0.1.18]: https://github.com/taiki-e/semihosting/compare/v0.1.17...v0.1.18 [0.1.17]: https://github.com/taiki-e/semihosting/compare/v0.1.16...v0.1.17 [0.1.16]: https://github.com/taiki-e/semihosting/compare/v0.1.15...v0.1.16 [0.1.15]: https://github.com/taiki-e/semihosting/compare/v0.1.14...v0.1.15 diff --git a/Cargo.toml b/Cargo.toml index 87a7171..ca7ae8b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "semihosting" -version = "0.1.17" #publish:version +version = "0.1.18" #publish:version edition = "2021" rust-version = "1.64" license = "Apache-2.0 OR MIT"