diff --git a/CHANGELOG.md b/CHANGELOG.md index d18971e..c312dfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.1] - 2026-03-10 + +### Fixed + +- Publish crates.io release with the correct crate version after the `v0.4.0` GitHub release + ## [0.4.0] - 2026-03-10 ### Added @@ -86,7 +92,8 @@ This is the initial release of excel-cli, a lightweight terminal-based Excel vie - Copy, cut, and paste functionality with `y`, `d`, and `p` keys - Support for pipe operator when exporting to JSON -[Unreleased]: https://github.com/fuhan666/excel-cli/compare/v0.4.0...HEAD +[Unreleased]: https://github.com/fuhan666/excel-cli/compare/v0.4.1...HEAD +[0.4.1]: https://github.com/fuhan666/excel-cli/releases/tag/v0.4.1 [0.4.0]: https://github.com/fuhan666/excel-cli/releases/tag/v0.4.0 [0.3.0]: https://github.com/fuhan666/excel-cli/releases/tag/v0.3.0 [0.2.0]: https://github.com/fuhan666/excel-cli/releases/tag/v0.2.0 diff --git a/Cargo.lock b/Cargo.lock index 120523b..a7ea831 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -311,7 +311,7 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" [[package]] name = "excel-cli" -version = "0.3.0" +version = "0.4.1" dependencies = [ "anyhow", "calamine", diff --git a/Cargo.toml b/Cargo.toml index 6e2ec85..bb033c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "excel-cli" -version = "0.3.0" +version = "0.4.1" edition = "2021" description = "A lightweight terminal-based Excel viewer with Vim-like navigation for viewing, editing, and exporting Excel data to JSON format." license = "MIT" repository = "https://github.com/fuhan666/excel-cli" keywords = ["Excel", "Excel-export", "Excel-json", "calamine", "ratatui"] categories = ["command-line-utilities", "development-tools", "data-structures", "parsing"] -exclude = ["/.github", "CHANGELOG.md", ".gitignore"] +exclude = ["/.github", "AGENTS.md", "CHANGELOG.md", ".gitignore"] [dependencies] ratatui = "0.24.0" @@ -26,4 +26,4 @@ tui-textarea = "0.4.0" opt-level = 3 lto = true codegen-units = 1 -strip = true \ No newline at end of file +strip = true