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

Commit

Permalink
Merge #67
Browse files Browse the repository at this point in the history
67: Prepare for the 0.9.0 release r=Tiwalun a=Yatekii



Co-authored-by: Noah Hüsser <[email protected]>
  • Loading branch information
bors[bot] and Yatekii authored Sep 2, 2020
2 parents ee44206 + b1f031c commit 73f5b93
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 12 deletions.
19 changes: 16 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed


### Fixed

## [0.9.0]

### Added

- Support for cargo workspaces was added with the integration of `cargo-metadata` instead of `cargo-project` (in #39 by @Tiwalun)
- Show the compiler output in `cargo flash` if the called `cargo build` command fails (in #53 by @Tiwalun).

### Changed

### Fixed

### Removed

- The option to start a GDB server after flashing is removed. It is recommended to use [cargo-embed](https://github.com/probe-rs/cargo-embed)
Expand All @@ -17,8 +31,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `--no-download`
- `--gdb-connection-string`

### Fixed

## [0.8.0]

### Added
Expand Down Expand Up @@ -103,7 +115,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/probe-rs/compare/v0.8.0...master
[Unreleased]: https://github.com/probe-rs/probe-rs/compare/v0.9.0...master
[0.9.0]: https://github.com/probe-rs/probe-rs/compare/v0.8.0...v0.9.0
[0.8.0]: https://github.com/probe-rs/probe-rs/releases/tag/v0.7.0...v0.8.0
[0.7.0]: https://github.com/probe-rs/probe-rs/releases/tag/v0.6.0...v0.7.0
[0.6.0]: https://github.com/probe-rs/probe-rs/releases/tag/v0.5.0...v0.6.0
Expand Down
12 changes: 6 additions & 6 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.8.0"
version = "0.9.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 @@ -20,5 +20,5 @@ env_logger = "0.7.1"
log = "0.4.0"
lazy_static = "1.4.0"
colored = "2.0.0"
probe-rs = { version = "0.8.0", git = "https://github.com/probe-rs/probe-rs" }
probe-rs-cli-util = { version = "0.8.0", git = "https://github.com/probe-rs/probe-rs" }
probe-rs = { version = "0.9.0", git = "https://github.com/probe-rs/probe-rs" }
probe-rs-cli-util = { version = "0.9.0", git = "https://github.com/probe-rs/probe-rs" }

0 comments on commit 73f5b93

Please sign in to comment.