Skip to content

Commit 6796183

Browse files
Prepare 3.0.0 release (#611)
* docs: Update changelog * build: Bump dependencies, espflash and cargo-espflash * style: Format toml files
1 parent e574197 commit 6796183

File tree

5 files changed

+89
-87
lines changed

5 files changed

+89
-87
lines changed

CHANGELOG.md

+3-7
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,14 @@ 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]
9-
10-
### Added
8+
## [3.0.0] - 2024-03-13
119

1210
### Fixed
1311
- Fix timeout while changing the baudrate for some ESP32-S3 targets (#607)
1412

1513
### Changed
1614
- Update ESP32, ESP32-C2, ESP32-C3, ESP32-C6, ESP32-H2, ESP32-S2, ESP32-S3 stub (#607, #610)
1715

18-
### Removed
19-
2016
## [3.0.0-rc.2] - 2024-03-04
2117

2218
### Added
@@ -163,7 +159,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
163159

164160
### Fixed
165161

166-
- Various fixesand improvements relating to crystal frequency and serial monitor for the ESP32-C2 (#314, #315, #330)
162+
- Various fixes and improvements relating to crystal frequency and serial monitor for the ESP32-C2 (#314, #315, #330)
167163

168164
### Changed
169165

@@ -237,7 +233,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
237233

238234
## [1.0.0] - 2021-09-21
239235

240-
[Unreleased]: https://github.com/esp-rs/espflash/compare/v3.0.0-rc.2...HEAD
236+
[3.0.0]: https://github.com/esp-rs/espflash/compare/v3.0.0-rc.2...v3.0.0
241237
[3.0.0-rc.2]: https://github.com/esp-rs/espflash/compare/v3.0.0-rc.1...v3.0.0-rc.2
242238
[3.0.0-rc.1]: https://github.com/esp-rs/espflash/compare/v2.1.0...v3.0.0-rc.1
243239
[2.1.0]: https://github.com/esp-rs/espflash/compare/v2.0.1...v2.1.0

Cargo.lock

+43-48
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[workspace]
22
resolver = "2"
3-
members = ["cargo-espflash", "espflash"]
3+
members = ["cargo-espflash", "espflash"]
44

55
[profile.release]
6-
lto = "thin"
6+
lto = "thin"
77
strip = true

cargo-espflash/Cargo.toml

+20-15
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
[package]
22
name = "cargo-espflash"
3-
version = "3.0.0-rc.2"
3+
version = "3.0.0"
44
edition = "2021"
55
rust-version = "1.74"
6-
description = "Cargo subcommand for flashing Espressif devices"
7-
repository = "https://github.com/esp-rs/espflash"
8-
license = "MIT OR Apache-2.0"
9-
keywords = ["cargo", "cli", "embedded", "esp"]
10-
categories = ["command-line-utilities", "development-tools", "development-tools::cargo-plugins", "embedded"]
6+
description = "Cargo subcommand for flashing Espressif devices"
7+
repository = "https://github.com/esp-rs/espflash"
8+
license = "MIT OR Apache-2.0"
9+
keywords = ["cargo", "cli", "embedded", "esp"]
10+
categories = [
11+
"command-line-utilities",
12+
"development-tools",
13+
"development-tools::cargo-plugins",
14+
"embedded",
15+
]
1116

1217
[package.metadata.binstall]
1318
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }.{ archive-format }"
@@ -16,15 +21,15 @@ pkg-fmt = "zip"
1621

1722
[dependencies]
1823
cargo_metadata = "0.18.1"
19-
clap = { version = "4.5.1", features = ["derive", "wrap_help"] }
20-
env_logger = "0.11.2"
21-
esp-idf-part = "0.5.0"
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"
27-
toml = "0.8.10"
24+
clap = { version = "4.5.2", features = ["derive", "wrap_help"] }
25+
env_logger = "0.11.3"
26+
esp-idf-part = "0.5.0"
27+
espflash = { version = "3.0.0", path = "../espflash" }
28+
log = "0.4.21"
29+
miette = { version = "7.2.0", features = ["fancy"] }
30+
serde = { version = "1.0.197", features = ["derive"] }
31+
thiserror = "1.0.58"
32+
toml = "0.8.11"
2833

2934
[target.'cfg(unix)'.dependencies]
3035
cargo = { version = "0.77.0", features = ["vendored-openssl"] }

0 commit comments

Comments
 (0)