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 0.3.1 release #138

Merged
merged 2 commits into from
Mar 3, 2025
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
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- The `defmt` feature of `panic-rtt-target` is now enabled when needed. (#137)

### Removed

## [0.3.1] - 2025-03-03

### Fixed

- The `defmt` feature of `panic-rtt-target` is now enabled when needed. (#137)

## [0.3.0] - 2025-02-24

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

- Initial release

[Unreleased]: https://github.com/esp-rs/esp-generate/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/esp-rs/esp-generate/compare/v0.3.1...HEAD
[0.3.1]: https://github.com/esp-rs/esp-generate/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/esp-rs/esp-generate/compare/v0.2.2...v0.3.0
[0.2.2]: https://github.com/esp-rs/esp-generate/releases/tag/v0.2.2
[0.2.1]: https://github.com/esp-rs/esp-generate/releases/tag/v0.2.1
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp-generate"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
rust-version = "1.84"
description = "Template generation tool to create no_std applications targeting Espressif's chips"
Expand All @@ -23,10 +23,10 @@ default = ["update-informer"]
update-informer = ["dep:update-informer"]

[dependencies]
clap = { version = "4.5.30", features = ["derive"] }
clap = { version = "4.5.31", features = ["derive"] }
crossterm = "0.28.1"
env_logger = "0.11.6"
esp-metadata = { version = "0.5.0", features = ["clap"] }
esp-metadata = { version = "0.6.0", features = ["clap"] }
log = "0.4.26"
ratatui = { version = "0.29.0", features = ["crossterm", "unstable"] }
rhai = "1.21.0"
Expand All @@ -36,5 +36,5 @@ serde = { version = "1.0.218", features = ["derive"] }
serde_yaml = "0.9"

[build-dependencies]
quote = "1.0.38"
quote = "1.0.39"
walkdir = "2.5.0"
65 changes: 48 additions & 17 deletions xtask/Cargo.lock

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

6 changes: 3 additions & 3 deletions xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ edition = "2021"
publish = false

[dependencies]
anyhow = "1.0.93"
anyhow = "1.0.97"
clap = { version = "4.5.21", features = ["derive"] }
env_logger = "0.11.5"
esp-metadata = { version = "0.5.0", features = ["clap"] }
esp-metadata = { version = "0.6.0", features = ["clap"] }
esp-generate = { path = "..", default-features = false }
log = "0.4.22"
tempfile = "3.14.0"
tempfile = "3.17.1"
serde_yaml = "0.9"
Loading