Skip to content

Commit

Permalink
feat: Prepare 0.2.2 release (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioGasquez authored Jan 16, 2025
1 parent 67bd8a0 commit ae7909e
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 38 deletions.
21 changes: 15 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

### Changed

### Fixed

### Removed

## [0.2.2] - 2025-01-16

### Added
- The resulting `Cargo.toml` is now formated with Taplo (#72)

### Changed
- Update the resulting binary name (#62)
- Include version of `esp-generate` in the generated code (#67)
- Use rustc-link-arg instead of rustc-link-arg-bin (#67)
- Use `rustc-link-arg` instead of `rustc-link-arg-bin` (#67)

### Fixed
- Verify the required options are provided (#65)
- Use stable toolchain for rust-analyzer on xtensa targets (#69)
- Added missing template substitution in devcontainer.json (#70)

### Removed
- Use `stable` toolchain for Rust Analyzer on Xtensa targets (#69)
- Added missing template substitution in `devcontainer.json` (#70)

## [0.2.1] - 2024-11-26

Expand All @@ -47,7 +55,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.2.1...HEAD
[Unreleased]: https://github.com/esp-rs/esp-generate/compare/v0.2.2...HEAD
[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
[0.2.0]: https://github.com/esp-rs/esp-generate/releases/tag/v0.2.0
[0.1.0]: https://github.com/esp-rs/esp-generate/releases/tag/v0.1.0
50 changes: 25 additions & 25 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp-generate"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
rust-version = "1.74"
description = "Template generation tool to create no_std applications targeting Espressif's chips"
Expand All @@ -19,15 +19,15 @@ include = [
]

[dependencies]
clap = { version = "4.5.21", features = ["derive"] }
clap = { version = "4.5.26", features = ["derive"] }
crossterm = "0.28.1"
env_logger = "0.11.5"
esp-metadata = { version = "0.4.0", features = ["clap"] }
log = "0.4.22"
env_logger = "0.11.6"
esp-metadata = { version = "0.5.0", features = ["clap"] }
log = "0.4.25"
ratatui = { version = "0.29.0", features = ["crossterm"] }
rhai = "1.20.0"
rhai = "1.20.1"
taplo = "0.13.2"

[build-dependencies]
quote = "1.0.37"
quote = "1.0.38"
walkdir = "2.5.0"

0 comments on commit ae7909e

Please sign in to comment.