Skip to content
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
26 changes: 19 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

### Added

### Changed

### Fixed

### Removed

## [4.1.0] - 2025-09-18

### Added

- Add `--no-addresses` flag to `monitor` subcommand (#942)
- Add new ESP32-C5 magic values (#940)

### Changed

- Renamed `--check-app-descriptor` to `--ignore-app-descriptor` (#833)
- Rename `--check-app-descriptor` to `--ignore-app-descriptor` (#833)

### Fixed

- [Windows] Fixed a crash in monitor when espflash is connected via USB Serial/JTAG, and the user is typing into the monitor but the device is not reading serial input. (#943)
- [Linux/MacOS] Fixed espflash hanging when espflash is connected via USB Serial/JTAG, and the user is typing into the monitor but the device is not reading serial input. (#944, #945)
- Fixed ESP32-S2 flash size detection issues (#950)
- Fix a crash in monitor when espflash is connected via USB Serial/JTAG, and the user is typing into the monitor but the device is not reading serial input. (#943, #944, #945)
- Fix ESP32-S2 flash size detection issues (#950)
- Images are now automatically padded to 4 bytes before writing by the library (previously this was done in the CLI) (#951)

### Removed

## [4.0.1] - 2025-07-07

### Changed

- `espflash` now allows wider version ranges on its dependencies(#924)

### Fixed

- `save-image` now checks if the ELF contains the app descriptor (#920)

## [4.0.0] - 2025-07-01
Expand Down Expand Up @@ -411,7 +422,8 @@ 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/v4.0.1...HEAD
[Unreleased]: https://github.com/esp-rs/espflash/compare/v4.1.0...HEAD
[4.1.0]: https://github.com/esp-rs/espflash/compare/v4.0.1...v4.1.0
[4.0.1]: https://github.com/esp-rs/espflash/compare/v4.0.0...v4.0.1
[4.0.0]: https://github.com/esp-rs/espflash/compare/v3.3.0...v4.0.0
[3.3.0]: https://github.com/esp-rs/espflash/compare/v3.2.0...v3.3.0
Expand Down
60 changes: 36 additions & 24 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions cargo-espflash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-espflash"
version = "4.0.1"
version = "4.1.0"
edition = "2024"
rust-version = "1.85"
description = "Cargo subcommand for interacting with Espressif devices"
Expand All @@ -23,7 +23,7 @@ pkg-fmt = "zip"
[dependencies]
cargo_metadata = "0.22"
clap = { version = "4.5", features = ["derive", "wrap_help"] }
espflash = { version = "4.0", path = "../espflash" }
espflash = { version = "4.1", path = "../espflash" }
log = "0.4"
miette = { version = "7.6", features = ["fancy"] }
serde = { version = "1.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion espflash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "espflash"
version = "4.0.1"
version = "4.1.0"
edition = "2024"
rust-version = "1.85"
description = "A command-line tool for interacting with Espressif devices"
Expand Down
2 changes: 1 addition & 1 deletion espflash/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
//! [espflash] can also be used as a library:
//!
//! ```toml
//! espflash = { version = "4.0.1", default-features = false }
//! espflash = { version = "4.1.0", default-features = false }
//! ```
//!
//! We add `default-features` here to disable the `cli` feature, which is
Expand Down