Skip to content

Commit c230d54

Browse files
Prepare 3.0.0-rc.2 (#606)
* build: Update deps * build: Bump espflash and cargo-espflash version * docs: Update changelog
1 parent aceb99a commit c230d54

File tree

4 files changed

+42
-35
lines changed

4 files changed

+42
-35
lines changed

CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,25 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

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

1010
### Added
11+
1112
- Add `--list-all-ports` connection argument to avoid serial port filtering (#590)
1213
- Allow config file to live in parent folder (#595)
1314

1415
### Fixed
16+
1517
- Change the `hard_reset` sequence to fix Windows issues (#594)
1618
- Improve resolving non-code addresses (#603)
1719

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

24-
### Removed
25-
2627
## [3.0.0-rc.1] - 2024-02-16
2728

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

225226
## [1.0.0] - 2021-09-21
226227

227-
[Unreleased]: https://github.com/esp-rs/espflash/compare/v3.0.0-rc.1...HEAD
228+
[3.0.0-rc.2]: https://github.com/esp-rs/espflash/compare/v3.0.0-rc.1...v3.0.0-rc.2
228229
[3.0.0-rc.1]: https://github.com/esp-rs/espflash/compare/v2.1.0...v3.0.0-rc.1
229230
[2.1.0]: https://github.com/esp-rs/espflash/compare/v2.0.1...v2.1.0
230231
[2.0.1]: https://github.com/esp-rs/espflash/compare/v2.0.0...v2.0.1

Cargo.lock

Lines changed: 20 additions & 14 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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-espflash"
3-
version = "3.0.0-rc.1"
3+
version = "3.0.0-rc.2"
44
edition = "2021"
55
rust-version = "1.74"
66
description = "Cargo subcommand for flashing Espressif devices"
@@ -16,14 +16,14 @@ pkg-fmt = "zip"
1616

1717
[dependencies]
1818
cargo_metadata = "0.18.1"
19-
clap = { version = "4.4.18", features = ["derive", "wrap_help"] }
19+
clap = { version = "4.5.1", features = ["derive", "wrap_help"] }
2020
env_logger = "0.11.2"
2121
esp-idf-part = "0.5.0"
22-
espflash = { version = "3.0.0-rc.1", path = "../espflash" }
23-
log = "0.4.20"
24-
miette = { version = "7.0.0", features = ["fancy"] }
25-
serde = { version = "1.0.196", features = ["derive"] }
26-
thiserror = "1.0.56"
22+
espflash = { version = "3.0.0-rc.2", path = "../espflash" }
23+
log = "0.4.21"
24+
miette = { version = "7.1.0", features = ["fancy"] }
25+
serde = { version = "1.0.197", features = ["derive"] }
26+
thiserror = "1.0.57"
2727
toml = "0.8.10"
2828

2929
[target.'cfg(unix)'.dependencies]

espflash/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "espflash"
3-
version = "3.0.0-rc.1"
3+
version = "3.0.0-rc.2"
44
edition = "2021"
55
rust-version = "1.74"
66
description = "A command-line tool for flashing Espressif devices"
@@ -24,10 +24,10 @@ required-features = ["cli", "serialport"]
2424

2525
[dependencies]
2626
addr2line = { version = "0.21.0", optional = true }
27-
base64 = "0.21.7"
28-
bytemuck = { version = "1.14.1", features = ["derive"] }
29-
clap = { version = "4.4.18", features = ["derive", "env", "wrap_help"], optional = true }
30-
clap_complete = { version = "4.4.10", optional = true }
27+
base64 = "0.22.0"
28+
bytemuck = { version = "1.14.3", features = ["derive"] }
29+
clap = { version = "4.5.1", features = ["derive", "env", "wrap_help"], optional = true }
30+
clap_complete = { version = "4.5.1", optional = true }
3131
comfy-table = { version = "7.1.0", optional = true }
3232
crossterm = { version = "0.25.0", optional = true } # 0.26.x and 0.27.x causes issues on Windows
3333
ctrlc = { version = "3.4.2", optional = true }
@@ -40,19 +40,19 @@ env_logger = { version = "0.11.2", optional = true }
4040
esp-idf-part = "0.5.0"
4141
flate2 = "1.0.28"
4242
hex = { version = "0.4.3", features = ["serde"], optional = true }
43-
indicatif = { version = "0.17.7", optional = true }
43+
indicatif = { version = "0.17.8", optional = true }
4444
lazy_static = { version = "1.4.0", optional = true }
45-
log = "0.4.20"
45+
log = "0.4.21"
4646
md-5 = "0.10.6"
47-
miette = { version = "7.0.0" }
47+
miette = { version = "7.1.0" }
4848
parse_int = { version = "0.6.0", optional = true }
4949
regex = { version = "1.10.3", optional = true }
50-
serde = { version = "1.0.196", features = ["derive"] }
50+
serde = { version = "1.0.197", features = ["derive"] }
5151
serialport = { version = "4.3.0", optional = true }
5252
sha2 = "0.10.8"
5353
slip-codec = { version = "0.4.0", optional = true }
5454
strum = { version = "0.26.1", features = ["derive"] }
55-
thiserror = "1.0.56"
55+
thiserror = "1.0.57"
5656
toml = { version = "0.8.10", optional = true }
5757
update-informer = { version = "1.1.0", optional = true }
5858
xmas-elf = { version = "0.9.1" }

0 commit comments

Comments
 (0)