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
23 changes: 16 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Homebrew installation support (`brew install cpplain/tap/lnk`)

### Changed

- **BREAKING:** Simplified version output to `lnk <version>` for `--version` flag and `version` command (removed commit hash and build date; dev builds show `dev+timestamp`)

### Deprecated

### Removed

- `make install` target (use Homebrew for installation)

### Fixed

### Security

## [0.5.0] - 2026-02-16

### Added

- Homebrew installation support (`brew install cpplain/tap/lnk`)

### Changed

- **BREAKING:** Simplified version output to `lnk <version>` for `--version` flag and `version` command (removed commit hash and build date; dev builds show `dev+timestamp`)

### Removed

- **BREAKING:** `make install` target (use Homebrew for installation)

## [0.4.0] - 2026-02-14

### Added
Expand Down Expand Up @@ -114,7 +122,8 @@ Initial release of cfgman.
- **Performance** - Concurrent operations for status checking
- **Zero dependencies** - Pure Go implementation using only standard library

[unreleased]: https://github.com/cpplain/lnk/compare/v0.4.0...HEAD
[unreleased]: https://github.com/cpplain/lnk/compare/v0.5.0...HEAD
[0.5.0]: https://github.com/cpplain/lnk/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/cpplain/lnk/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/cpplain/lnk/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/cpplain/lnk/compare/v0.1.1...v0.2.0
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,16 @@ lnk orphan --path ~/.config/oldapp # Stop managing a config
### Global Options

```bash
lnk --help # Show help
lnk --version # Show version
lnk help [command] # Get help
lnk -v, --verbose # Enable verbose output
lnk -q, --quiet # Suppress all non-error output
lnk -y, --yes # Assume yes to all prompts
lnk --no-color # Disable colored output
lnk --output FORMAT # Output format: text (default), json

# Get command-specific help
lnk help [command]
```

## How It Works
Expand Down