Skip to content
This repository has been archived by the owner on Jan 14, 2023. It is now read-only.

Prepare for 0.12.0 #207

Merged
merged 5 commits into from
Nov 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

## [0.12.0]

### Changed

- Updated probe-rs to 0.12.0.

## [0.11.0]

### Added
Expand Down Expand Up @@ -145,7 +151,8 @@ Improved flashing for `cargo-flash` considering speed and useability.
## [0.2.0]
- Introduce cargo-flash which can automatically build & flash the target elf file.

[Unreleased]: https://github.com/probe-rs/cargo-flash/compare/v0.11.0...master
[Unreleased]: https://github.com/probe-rs/cargo-flash/compare/v0.12.0...master
[0.12.0]: https://github.com/probe-rs/cargo-flash/releases/tag/v0.11.0..v0.12.0
[0.11.0]: https://github.com/probe-rs/cargo-flash/releases/tag/v0.10.1..v0.11.0
[0.10.1]: https://github.com/probe-rs/cargo-flash/releases/tag/v0.10.0..v0.10.1
[0.10.0]: https://github.com/probe-rs/cargo-flash/compare/v0.9.0...v0.10.0
Expand Down
116 changes: 65 additions & 51 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-flash"
version = "0.11.0"
version = "0.12.0"
authors = ["Noah Hüsser <[email protected]>", "Dominik Boehi <[email protected]>"]
edition = "2018"
description = "A utility to flash ARM cores with ELFs directly from within cargo."
Expand All @@ -22,8 +22,8 @@ structopt = "0.3.25"
env_logger = "0.9.0"
lazy_static = "1.4.0"
colored = "2.0.0"
probe-rs = { version = "0.11.0", git = "https://github.com/probe-rs/probe-rs" }
probe-rs-cli-util = { version = "0.11.0", git = "https://github.com/probe-rs/probe-rs", default-features = false, features=["anyhow"] }
probe-rs = { version = "0.12.0", git = "https://github.com/probe-rs/probe-rs" }
probe-rs-cli-util = { version = "0.12.0", git = "https://github.com/probe-rs/probe-rs", default-features = false, features=["anyhow"] }
git-version = "0.3.5"
anyhow = "1.0.48"
bytesize = "1.1.0"
Expand Down
Loading