Skip to content
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
9 changes: 6 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,17 @@ jobs:
rustup component add rustfmt
rustup component add clippy

- name: Cache cargo artifacts
uses: Swatinem/rust-cache@v2

- name: Check formatting
run: cargo fmt --check

- name: Build
run: cargo build --verbose
run: cargo build --locked --all-targets --verbose

- name: Run tests
run: cargo test --verbose
run: cargo test --locked --all-targets --verbose

- name: Run clippy
run: cargo clippy -- -D warnings
run: cargo clippy --locked --all-targets -- -D warnings
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,13 @@ jobs:
toolchain: stable
targets: ${{ matrix.target }}

- name: Cache cargo artifacts
uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.target }}

- name: Build for target
run: cargo build --release --target ${{ matrix.target }}
run: cargo build --release --locked --target ${{ matrix.target }}

- name: Rename binary (Linux/macOS)
if: runner.os != 'Windows'
Expand Down
20 changes: 16 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.3.1] - 2026-04-24

### Added

- TUI `:help` command — opens a scrollable, structured key-reference overlay with all navigation, editing, and command-mode shortcuts.

### Changed

- TUI visual refresh: cleaner title bar with branding and inline row/column stats, single-line status bar, and a consistent dark theme across panels.
- `check` scans are more efficient and report findings with A1-style cell ranges.

## [1.3.0] - 2026-04-22

### Added
Expand Down Expand Up @@ -201,10 +212,11 @@ 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/v1.3.0...HEAD
[1.3.0]: https://github.com/fuhan666/excel-cli/compare/v1.2.0...v1.3.0
[1.2.0]: https://github.com/fuhan666/excel-cli/compare/v1.1.0...v1.2.0
[1.1.0]: https://github.com/fuhan666/excel-cli/compare/v1.0.0...v1.1.0
[Unreleased]: https://github.com/fuhan666/excel-cli/compare/v1.3.1...HEAD
[1.3.1]: https://github.com/fuhan666/excel-cli/releases/tag/v1.3.1
[1.3.0]: https://github.com/fuhan666/excel-cli/releases/tag/v1.3.0
[1.2.0]: https://github.com/fuhan666/excel-cli/releases/tag/v1.2.0
[1.1.0]: https://github.com/fuhan666/excel-cli/releases/tag/v1.1.0
[1.0.0]: https://github.com/fuhan666/excel-cli/releases/tag/v1.0.0
[0.5.2]: https://github.com/fuhan666/excel-cli/releases/tag/v0.5.2
[0.5.1]: https://github.com/fuhan666/excel-cli/releases/tag/v0.5.1
Expand Down
Loading
Loading