From 32adea52ed6d2ab0570cf032c7222b357734323d Mon Sep 17 00:00:00 2001 From: Johann Hemmann Date: Thu, 20 Jul 2023 16:39:34 +0200 Subject: [PATCH 1/3] Prepare release v0.1.7 --- CHANGELOG.md | 6 +++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f96744..382cd04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.1.7] - 2023-07-20 + - [#79]: Summer cleanup - [#77]: CI: Switch from bors to github merge queue - [#75]: End of year refactoring @@ -119,7 +121,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). Initial release -[Unreleased]: https://github.com/knurling-rs/flip-link/compare/v0.1.5...main +[Unreleased]: https://github.com/knurling-rs/flip-link/compare/v0.1.7...main +[v0.1.7]: https://github.com/knurling-rs/flip-link/compare/v0.1.6...v0.1.7 +[v0.1.6]: https://github.com/knurling-rs/flip-link/compare/v0.1.5...v0.1.g [v0.1.5]: https://github.com/knurling-rs/flip-link/compare/v0.1.4...v0.1.5 [v0.1.4]: https://github.com/knurling-rs/flip-link/compare/v0.1.3...v0.1.4 [v0.1.3]: https://github.com/knurling-rs/flip-link/compare/v0.1.2...v0.1.3 diff --git a/Cargo.lock b/Cargo.lock index e57113b..290d574 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -78,7 +78,7 @@ dependencies = [ [[package]] name = "flip-link" -version = "0.1.6" +version = "0.1.7" dependencies = [ "assert_cmd", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index 2a9a494..4afe850 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "stack-protection"] license = "MIT OR Apache-2.0" name = "flip-link" repository = "https://github.com/knurling-rs/flip-link" -version = "0.1.6" +version = "0.1.7" readme = "README.md" [dependencies] From 94d4cebc2f95dcf5084a7212d2ca52937495718d Mon Sep 17 00:00:00 2001 From: Johann Hemmann Date: Thu, 20 Jul 2023 17:49:58 +0200 Subject: [PATCH 2/3] `test-flip-link-app`: Update `dependencies` --- test-flip-link-app/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test-flip-link-app/Cargo.toml b/test-flip-link-app/Cargo.toml index d896b87..614806c 100644 --- a/test-flip-link-app/Cargo.toml +++ b/test-flip-link-app/Cargo.toml @@ -7,12 +7,12 @@ version = "0.1.0" [dependencies] cortex-m = "0.7" -cortex-m-rt = "0.6" +cortex-m-rt = "0.7" cortex-m-semihosting = "0.5" panic-semihosting = { version = "0.6", features = ["exit"] } # optional -lm3s6965 = { version = "0.1", optional = true } +lm3s6965 = { version = "0.2", optional = true } [build-dependencies] anyhow = "1.0" From 0ebf3b08bb3a716d815d8db41ae9838ca4600f94 Mon Sep 17 00:00:00 2001 From: Johann Hemmann Date: Thu, 20 Jul 2023 17:50:07 +0200 Subject: [PATCH 3/3] `test-flip-link-app`: Drop `anyhow` --- test-flip-link-app/Cargo.toml | 3 --- test-flip-link-app/build.rs | 6 +++++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/test-flip-link-app/Cargo.toml b/test-flip-link-app/Cargo.toml index 614806c..6c1b845 100644 --- a/test-flip-link-app/Cargo.toml +++ b/test-flip-link-app/Cargo.toml @@ -14,9 +14,6 @@ panic-semihosting = { version = "0.6", features = ["exit"] } # optional lm3s6965 = { version = "0.2", optional = true } -[build-dependencies] -anyhow = "1.0" - [features] default = ["lm3s6965"] diff --git a/test-flip-link-app/build.rs b/test-flip-link-app/build.rs index 5185077..4f88a78 100644 --- a/test-flip-link-app/build.rs +++ b/test-flip-link-app/build.rs @@ -1,4 +1,8 @@ -fn main() -> anyhow::Result<()> { +use std::{error::Error, result::Result as StdResult}; + +type Result = StdResult>; + +fn main() -> Result<()> { // include following if hal is excluded (aka. default features are disabled) #[cfg(not(feature = "lm3s6965"))] {