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
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ While the major version is 0, minor version bumps may contain breaking changes.

## [Unreleased]

## [0.4.0] - 2026-08-11

A task's ID is derived from its title rather than stored, so a change to the
derivation rules moves every unpinned ID while every content hash stays
identical — and incremental indexing, which keys off those hashes, never
notices. This release makes the index aware of the rules it was built under,
and adds `lash migrate-ids` to repair the `@depends-on` references a past move
left dangling.

### Added

- `lash migrate-ids` rewrites `@depends-on` references left dangling by a
Expand Down Expand Up @@ -168,7 +177,8 @@ Initial release.
- Project scaffolding: `lash init` and the PixelQuest `lash playground`
- Configuration management, shell completions, and `lash explain` error catalog

[Unreleased]: https://github.com/fixture-dev/lash/compare/v0.3.1...HEAD
[Unreleased]: https://github.com/fixture-dev/lash/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/fixture-dev/lash/compare/v0.3.1...v0.4.0
[0.3.1]: https://github.com/fixture-dev/lash/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/fixture-dev/lash/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/fixture-dev/lash/compare/v0.1.0...v0.2.0
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = [
]

[workspace.package]
version = "0.3.1"
version = "0.4.0"
authors = ["Lash Contributors"]
edition = "2021"
rust-version = "1.75"
Expand Down
Loading