Skip to content

Commit

Permalink
Prepare 3.0.0-rc.2 (#606)
Browse files Browse the repository at this point in the history
* build: Update deps

* build: Bump espflash and cargo-espflash version

* docs: Update changelog
  • Loading branch information
SergioGasquez committed Mar 4, 2024
1 parent aceb99a commit c230d54
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 35 deletions.
9 changes: 5 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,25 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [3.0.0-rc.2] - 2024-03-04

### Added

- Add `--list-all-ports` connection argument to avoid serial port filtering (#590)
- Allow config file to live in parent folder (#595)

### Fixed

- Change the `hard_reset` sequence to fix Windows issues (#594)
- Improve resolving non-code addresses (#603)

### Changed

- Non-linux-musl: Only list the available USB Ports by default (#590)
- `FlashData::new` now returns `crate::Error` (#591)
- Moved `reset_after_flash` method to `reset` module (#594)
- The `command` module now requires `serialport`. (#599)

### Removed

## [3.0.0-rc.1] - 2024-02-16

### Added
Expand Down Expand Up @@ -224,7 +225,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [1.0.0] - 2021-09-21

[Unreleased]: https://github.com/esp-rs/espflash/compare/v3.0.0-rc.1...HEAD
[3.0.0-rc.2]: https://github.com/esp-rs/espflash/compare/v3.0.0-rc.1...v3.0.0-rc.2
[3.0.0-rc.1]: https://github.com/esp-rs/espflash/compare/v2.1.0...v3.0.0-rc.1
[2.1.0]: https://github.com/esp-rs/espflash/compare/v2.0.1...v2.1.0
[2.0.1]: https://github.com/esp-rs/espflash/compare/v2.0.0...v2.0.1
Expand Down
34 changes: 20 additions & 14 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions cargo-espflash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-espflash"
version = "3.0.0-rc.1"
version = "3.0.0-rc.2"
edition = "2021"
rust-version = "1.74"
description = "Cargo subcommand for flashing Espressif devices"
Expand All @@ -16,14 +16,14 @@ pkg-fmt = "zip"

[dependencies]
cargo_metadata = "0.18.1"
clap = { version = "4.4.18", features = ["derive", "wrap_help"] }
clap = { version = "4.5.1", features = ["derive", "wrap_help"] }
env_logger = "0.11.2"
esp-idf-part = "0.5.0"
espflash = { version = "3.0.0-rc.1", path = "../espflash" }
log = "0.4.20"
miette = { version = "7.0.0", features = ["fancy"] }
serde = { version = "1.0.196", features = ["derive"] }
thiserror = "1.0.56"
espflash = { version = "3.0.0-rc.2", path = "../espflash" }
log = "0.4.21"
miette = { version = "7.1.0", features = ["fancy"] }
serde = { version = "1.0.197", features = ["derive"] }
thiserror = "1.0.57"
toml = "0.8.10"

[target.'cfg(unix)'.dependencies]
Expand Down
20 changes: 10 additions & 10 deletions espflash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "espflash"
version = "3.0.0-rc.1"
version = "3.0.0-rc.2"
edition = "2021"
rust-version = "1.74"
description = "A command-line tool for flashing Espressif devices"
Expand All @@ -24,10 +24,10 @@ required-features = ["cli", "serialport"]

[dependencies]
addr2line = { version = "0.21.0", optional = true }
base64 = "0.21.7"
bytemuck = { version = "1.14.1", features = ["derive"] }
clap = { version = "4.4.18", features = ["derive", "env", "wrap_help"], optional = true }
clap_complete = { version = "4.4.10", optional = true }
base64 = "0.22.0"
bytemuck = { version = "1.14.3", features = ["derive"] }
clap = { version = "4.5.1", features = ["derive", "env", "wrap_help"], optional = true }
clap_complete = { version = "4.5.1", optional = true }
comfy-table = { version = "7.1.0", optional = true }
crossterm = { version = "0.25.0", optional = true } # 0.26.x and 0.27.x causes issues on Windows
ctrlc = { version = "3.4.2", optional = true }
Expand All @@ -40,19 +40,19 @@ env_logger = { version = "0.11.2", optional = true }
esp-idf-part = "0.5.0"
flate2 = "1.0.28"
hex = { version = "0.4.3", features = ["serde"], optional = true }
indicatif = { version = "0.17.7", optional = true }
indicatif = { version = "0.17.8", optional = true }
lazy_static = { version = "1.4.0", optional = true }
log = "0.4.20"
log = "0.4.21"
md-5 = "0.10.6"
miette = { version = "7.0.0" }
miette = { version = "7.1.0" }
parse_int = { version = "0.6.0", optional = true }
regex = { version = "1.10.3", optional = true }
serde = { version = "1.0.196", features = ["derive"] }
serde = { version = "1.0.197", features = ["derive"] }
serialport = { version = "4.3.0", optional = true }
sha2 = "0.10.8"
slip-codec = { version = "0.4.0", optional = true }
strum = { version = "0.26.1", features = ["derive"] }
thiserror = "1.0.56"
thiserror = "1.0.57"
toml = { version = "0.8.10", optional = true }
update-informer = { version = "1.1.0", optional = true }
xmas-elf = { version = "0.9.1" }
Expand Down

0 comments on commit c230d54

Please sign in to comment.