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

## [Unreleased]

## [0.3.2] - 2026-04-23

### Added
- `.deb` archive extraction support with ar format parsing
- `zstd` decompression support for `.tar.zst` archives
- Support for both GNU (10-byte) and BSD (8-byte) ar header size fields

### Changed
- `identifier` field on `InstalledPackage` — set to the repo name at install time
- `uninstall` now accepts short name (repo or identifier) in addition to `owner/repo`
- `list` shows an `Identifier` column (cyan) in both normal and verbose modes
- 74 new integration tests across `tests/checksum.rs`, `tests/config.rs`, `tests/extract.rs`, `tests/github.rs`, `tests/platform.rs`, `tests/registry.rs`
- `gcw` short alias binary
- AGENTS.md and README.md simplified to essential content

### Changed
### Fixed
- `gcw list` crash when registry TOML was written before `identifier` field existed — `#[serde(default)]` applied
- Platform asset matching now correctly selects platform-specific assets
- Added Rust target triple aliases for ripgrep and similar Rust projects
- Symlinks in bin/ now use absolute paths
- Success prefix changed from `[OK]` to `[EXEC]` (bold green)
- Info prefix is now cyan
- Removed all horizontal separator lines from output

### Removed
- `tests/unit/` folder dissolved — all integration tests now live directly under `tests/`
- `assert_cmd` moved to `[dev-dependencies]`
- Removed unused dependencies: `base64`, `base64ct`, `indexmap`, `url`, `time`

### Fixed
- `gcw list` crash when registry TOML was written before `identifier` field existed — `#[serde(default)]` applied
- Unused dependencies: `base64`, `base64ct`, `indexmap`, `url`, `time`

## [0.3.1] - 2026-04-22

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gitclaw"
version = "0.3.1"
version = "0.3.2"
edition = "2021"

[[bin]]
Expand Down
Loading