Skip to content

Commit

Permalink
Merge pull request #80 from knurling-rs/release
Browse files Browse the repository at this point in the history
Release `v0.1.7`
  • Loading branch information
Urhengulas committed Jul 20, 2023
2 parents 2635a67 + 0ebf3b0 commit 468bbbf
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
7 changes: 2 additions & 5 deletions test-flip-link-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +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 }

[build-dependencies]
anyhow = "1.0"
lm3s6965 = { version = "0.2", optional = true }

[features]
default = ["lm3s6965"]
Expand Down
6 changes: 5 additions & 1 deletion test-flip-link-app/build.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
fn main() -> anyhow::Result<()> {
use std::{error::Error, result::Result as StdResult};

type Result<T> = StdResult<T, Box<dyn Error>>;

fn main() -> Result<()> {
// include following if hal is excluded (aka. default features are disabled)
#[cfg(not(feature = "lm3s6965"))]
{
Expand Down

0 comments on commit 468bbbf

Please sign in to comment.