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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
# Changelog
All notable changes to this project will be documented in this file.

## [0.2.0](https://github.com/subotic/loom/compare/v0.1.0...v0.2.0) - 2026-03-20

### Added

- *(workspace)* add loom editor and loom reset commands ([#46](https://github.com/subotic/loom/issues/46), [#48](https://github.com/subotic/loom/issues/48), [#51](https://github.com/subotic/loom/issues/51))
- *(registry)* configurable scan_depth for flexible directory layouts ([#36](https://github.com/subotic/loom/issues/36), [#39](https://github.com/subotic/loom/issues/39), [#50](https://github.com/subotic/loom/issues/50))
- *(cli)* wire new commands, add flags, branch naming, and progress ([#40](https://github.com/subotic/loom/issues/40), [#44](https://github.com/subotic/loom/issues/44), [#45](https://github.com/subotic/loom/issues/45), [#49](https://github.com/subotic/loom/issues/49))

### Fixed

- *(exec)* show command name, directory, and PATH hints on failure ([#41](https://github.com/subotic/loom/issues/41), [#43](https://github.com/subotic/loom/issues/43))
- *(shell)* detect Ghostty.app on macOS and use `open -a` at runtime ([#42](https://github.com/subotic/loom/issues/42))

## [0.1.0] - 2026-03-17

### Added
Expand Down
4 changes: 2 additions & 2 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 @@ authors = ["Ivan Subotic <ivan.subotic@gmail.com>"]

[workspace.dependencies]
# Internal
loom-core = { path = "crates/loom-core", version = "0.1.0" }
loom-core = { path = "crates/loom-core", version = "0.2.0" }

# CLI
clap = { version = "4.5", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/loom-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "loom-cli"
description = "CLI binary for LOOM — thin wrapper over loom-core"
version = "0.1.0"
version = "0.2.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/loom-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "loom-core"
description = "Core library for LOOM — config, workspace, git, sync, agent, and TUI logic"
version = "0.1.0"
version = "0.2.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
Loading