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

## [Unreleased]

## [1.0.0] - 2026-04-24

First stable release.

### Added
- Release channels: `install --channel nightly|beta|stable`
- `search --channel <name>` filters releases by channel
- Channel pattern overrides in `.gitclaw.toml` under `[channels]`
- `export` outputs installed packages as TOML to stdout
- `export -o deps.toml` writes to file
- `import deps.toml` installs all packages from a TOML file
- Import skips already-installed packages unless `--force` is set
- Asset caching: downloaded archives cached to `~/.gitclaw/cache/`, reused on subsequent installs
- `cache clean` and `cache size` commands
- `list --outdated` compares installed versions against latest GitHub releases
- Local installs: `install --local user/repo` installs to `./.gitclaw/`
- `uninstall --local` for local project directory
- Platform-aware asset selection with scoring system
- `run` command to execute installed binaries directly
- `gcw` short alias binary
- Constants module for all string literals and magic values
- Taglines and output section headers for better CLI UX

### Changed
- Repository moved to `airscripts/gitclaw`
- Restructured as a library with `src/lib.rs` and separate `src/bin/` entrypoints
- Replaced all `"latest"` string literals with `RELEASE_TAG_LATEST` constant
- Improved variable naming in channel matching (wildcard flags)
- Codebase cleanup: removed dead code and unnecessary comments
- UI and output polishing across all commands
- CI action versions upgraded

### Fixed
- Platform asset matching with proper scoring for Linux-only releases
- Symlinks in `bin/` now use absolute paths
- Install channel persisted in registry for consistent updates

## [0.7.0] - 2026-04-23

### Added
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Setup

```bash
git clone https://github.com/clawdeeo/gitclaw.git
git clone https://github.com/airscripts/gitclaw.git
cd gitclaw
cargo build
cargo test
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
@@ -1,6 +1,6 @@
[package]
name = "gitclaw"
version = "0.7.0"
version = "1.0.0"
edition = "2021"
[lib]
name = "gitclaw"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# gitclaw

[![CI](https://github.com/clawdeeo/gitclaw/actions/workflows/main.yml/badge.svg)](https://github.com/clawdeeo/gitclaw/actions/workflows/main.yml)
[![CI](https://github.com/airscripts/gitclaw/actions/workflows/main.yml/badge.svg)](https://github.com/airscripts/gitclaw/actions/workflows/main.yml)

Install software from GitHub releases.
Also available as `gcw`.
Expand Down
2 changes: 1 addition & 1 deletion src/core/constants.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pub const APP_NAME: &str = "gitclaw";
pub const APP_NAME_SHORT: &str = "gcw";
pub const REPO_OWNER: &str = "clawdeeo";
pub const REPO_OWNER: &str = "airscripts";
pub const REPO_NAME: &str = "gitclaw";

pub const GITCLAW_DIR: &str = ".gitclaw";
Expand Down