Skip to content

Commit f679e03

Browse files
feat: Prepare 4.0.1 release (#925)
1 parent 531bb82 commit f679e03

File tree

5 files changed

+40
-21
lines changed

5 files changed

+40
-21
lines changed

CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## [Unreleased]
99

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

1312
### Changed
1413

15-
- `espflash` now allows wider version ranges on its dependencies(#924)
16-
1714
### Fixed
1815

1916
### Removed
2017

18+
## [4.0.1] - 2025-07-07
19+
20+
### Changed
21+
- `espflash` now allows wider version ranges on its dependencies(#924)
22+
23+
### Fixed
24+
- `save-image` now checks if the ELF contains the app descriptor (#920)
25+
2126
## [4.0.0] - 2025-07-01
2227

2328
### Added
@@ -398,7 +403,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
398403

399404
## [1.0.0] - 2021-09-21
400405

401-
[Unreleased]: https://github.com/esp-rs/espflash/compare/v4.0.0...HEAD
406+
[Unreleased]: https://github.com/esp-rs/espflash/compare/v4.0.1...HEAD
407+
[4.0.1]: https://github.com/esp-rs/espflash/compare/v4.0.0...v4.0.1
402408
[4.0.0]: https://github.com/esp-rs/espflash/compare/v3.3.0...v4.0.0
403409
[3.3.0]: https://github.com/esp-rs/espflash/compare/v3.2.0...v3.3.0
404410
[3.2.0]: https://github.com/esp-rs/espflash/compare/v3.1.1...v3.2.0

Cargo.lock

Lines changed: 26 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cargo-espflash/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-espflash"
3-
version = "4.0.0"
3+
version = "4.0.1"
44
edition = "2024"
55
rust-version = "1.85"
66
description = "Cargo subcommand for interacting with Espressif devices"

espflash/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "espflash"
3-
version = "4.0.0"
3+
version = "4.0.1"
44
edition = "2024"
55
rust-version = "1.85"
66
description = "A command-line tool for interacting with Espressif devices"
@@ -44,7 +44,7 @@ directories = { version = "6.0", optional = true }
4444
env_logger = { version = "0.11", optional = true }
4545
esp-idf-part = "0.6"
4646
flate2 = "1.1"
47-
indicatif = { version = "0.17", optional = true }
47+
indicatif = { version = "0.18", optional = true }
4848
log = "0.4"
4949
md-5 = "0.10"
5050
miette = "7.6"

espflash/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
//! [espflash] can also be used as a library:
1515
//!
1616
//! ```toml
17-
//! espflash = { version = "4.0.0", default-features = false }
17+
//! espflash = { version = "4.0.1", default-features = false }
1818
//! ```
1919
//!
2020
//! We add `default-features` here to disable the `cli` feature, which is

0 commit comments

Comments
 (0)