|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 6 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | +## [1.0.0] - 2024-10-28 |
| 9 | + |
| 10 | +### Added |
| 11 | +- Initial release of git-wt Go CLI |
| 12 | +- Port of bash script functionality to Go |
| 13 | +- Commands: |
| 14 | + - `init` - Initialize git-wt configuration |
| 15 | + - `new`/`add` - Create new worktree |
| 16 | + - `switch` - Switch to a worktree |
| 17 | + - `resume` - Resume work with session info |
| 18 | + - `remove` - Remove a worktree |
| 19 | + - `list` - List all worktrees |
| 20 | + - `status` - Show repository status |
| 21 | + - `clean` - Interactive cleanup of merged branches |
| 22 | + - `task` - Create worktree with task description |
| 23 | + - `root`/`main` - Return to repository root |
| 24 | +- YAML configuration support without external dependencies |
| 25 | +- Auto-detection of project types (Node.js, Python, Go, Ruby) |
| 26 | +- Session tracking with task descriptions |
| 27 | +- Setup and teardown action support |
| 28 | +- Cross-platform builds (macOS, Linux, Windows) |
| 29 | +- Installation script |
| 30 | +- GoReleaser configuration |
| 31 | +- GitHub Actions workflows |
| 32 | +- Comprehensive documentation |
| 33 | + |
| 34 | +### Changed |
| 35 | +- No longer depends on `yq` for YAML parsing |
| 36 | +- Improved error handling and validation |
| 37 | +- Better cross-platform compatibility |
| 38 | + |
| 39 | +### Security |
| 40 | +- Prevents removal of worktree while inside it |
| 41 | +- Checks for uncommitted changes before removal |
| 42 | +- Safe handling of file operations |
| 43 | + |
| 44 | +## [Unreleased] |
| 45 | + |
| 46 | +### Planned |
| 47 | +- Template support for common project types |
| 48 | +- Git hooks integration |
| 49 | +- Worktree archiving |
| 50 | +- Batch operations |
| 51 | +- Custom worktree locations |
| 52 | +- Plugin system |
0 commit comments