Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 3.0.0 release #611

Merged
merged 3 commits into from
Mar 13, 2024
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
10 changes: 3 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,14 @@ 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]

### Added
## [3.0.0] - 2024-03-13

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

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

### Removed

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

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

### Fixed

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

### Changed

Expand Down Expand Up @@ -237,7 +233,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.2...HEAD
[3.0.0]: https://github.com/esp-rs/espflash/compare/v3.0.0-rc.2...v3.0.0
[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
Expand Down
91 changes: 43 additions & 48 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.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[workspace]
resolver = "2"
members = ["cargo-espflash", "espflash"]
members = ["cargo-espflash", "espflash"]

[profile.release]
lto = "thin"
lto = "thin"
strip = true
35 changes: 20 additions & 15 deletions cargo-espflash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
[package]
name = "cargo-espflash"
version = "3.0.0-rc.2"
version = "3.0.0"
edition = "2021"
rust-version = "1.74"
description = "Cargo subcommand for flashing Espressif devices"
repository = "https://github.com/esp-rs/espflash"
license = "MIT OR Apache-2.0"
keywords = ["cargo", "cli", "embedded", "esp"]
categories = ["command-line-utilities", "development-tools", "development-tools::cargo-plugins", "embedded"]
description = "Cargo subcommand for flashing Espressif devices"
repository = "https://github.com/esp-rs/espflash"
license = "MIT OR Apache-2.0"
keywords = ["cargo", "cli", "embedded", "esp"]
categories = [
"command-line-utilities",
"development-tools",
"development-tools::cargo-plugins",
"embedded",
]

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

[dependencies]
cargo_metadata = "0.18.1"
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.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"
clap = { version = "4.5.2", features = ["derive", "wrap_help"] }
env_logger = "0.11.3"
esp-idf-part = "0.5.0"
espflash = { version = "3.0.0", path = "../espflash" }
log = "0.4.21"
miette = { version = "7.2.0", features = ["fancy"] }
serde = { version = "1.0.197", features = ["derive"] }
thiserror = "1.0.58"
toml = "0.8.11"

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