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

Commit

Permalink
Merge #60
Browse files Browse the repository at this point in the history
60: Prepare 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 9cd9acf + a0bc58a commit ed48605
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 17 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

### Changed

### Fixed

## [0.9.0]

### Added

- The config supports a new section called `reset`. It controls whether the target is reset. Default config:

```toml
Expand All @@ -21,12 +29,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
This way, you can add a `cargo embed` target that allows resetting and
optionally halting without flashing. Useful for debugging.

- Improved logging on different levels.
- Added the possibility to save logs (#28).
- Added support for cargo workspaces with the replacement of `cargo-project` with `cargo-metadata`.
- Added a flag to override the selected chip with `--chip`.
- Added a flag to override the selected probe with `--probe`.

### Changed

- The config option `flashing.halt_afterwards` has moved to `reset.halt_afterwards`

### Fixed

- Fixed the enter key for text input in the RTT terminal.
- Fixed loading of local config files.
- Fixed the default.toml.
- Fixed the error message when multiple probes are detected.

## [0.8.0]

### Added
Expand Down Expand Up @@ -102,7 +121,8 @@ An example is this config:
## [0.6.0]
- Initial release

[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/releases/tag/v0.9.0..v0.8.0
[0.8.0]: https://github.com/probe-rs/probe-rs/releases/tag/v0.8.0..v0.7.0
[0.7.0]: https://github.com/probe-rs/probe-rs/releases/tag/v0.7.0..v0.6.1
[0.6.1]: https://github.com/probe-rs/probe-rs/releases/tag/v0.6.1..v0.6.0
Expand Down
26 changes: 16 additions & 10 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-embed"
version = "0.8.0"
version = "0.9.0"
authors = ["Noah Hüsser <[email protected]>"]
edition = "2018"
description = "A utility to develop software for embedded ARM and RISC-V cores."
Expand All @@ -13,9 +13,9 @@ keywords = ["embedded"]
license = "MIT OR Apache-2.0"

[dependencies]
probe-rs = { version = "0.8.0", git = "https://github.com/probe-rs/probe-rs" }
gdb-server = { 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" }
gdb-server = { 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" }

structopt = "0.3.17"
indicatif = "0.15.0"
Expand All @@ -26,7 +26,7 @@ colored = "2.0.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0.51" }
config = { version = "0.10.1", features = ["toml", "json", "yaml"], default-features = false }
probe-rs-rtt = { version = "0.3.0" }
probe-rs-rtt = { version = "0.4.0" }
chrono = "0.4"
crossterm = "0.17.0"
derivative = "2.1.0"
Expand All @@ -36,4 +36,4 @@ anyhow = "1.0.31"
textwrap = "0.12.1"

[patch.crates-io]
probe-rs = { 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" }

0 comments on commit ed48605

Please sign in to comment.