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
119 changes: 69 additions & 50 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ brew install Clyra-AI/tap/wrkr
### Go install (Pinned/reproducible)

```bash
WRKR_VERSION="v1.11.2"
WRKR_VERSION="v1.12.0"
go install github.com/Clyra-AI/wrkr/cmd/wrkr@"${WRKR_VERSION}"
```

Expand Down
2 changes: 1 addition & 1 deletion docs-site/public/llm/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Install with Homebrew or the pinned Go path first, then verify the installed CLI

```bash
brew install Clyra-AI/tap/wrkr
WRKR_VERSION="v1.11.2"
WRKR_VERSION="v1.12.0"
go install github.com/Clyra-AI/wrkr/cmd/wrkr@"${WRKR_VERSION}"
wrkr version --json

Expand Down
4 changes: 2 additions & 2 deletions docs/commands/action.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Any packaged GitHub Action surface must wrap these CLI contracts rather than dup
Wrkr now ships a repo-root `action.yml` composite action that wraps the same CLI contracts through `scripts/action_entrypoint.sh`.

```yaml
- uses: Clyra-AI/wrkr@v1.11.2
- uses: Clyra-AI/wrkr@v1.12.0
with:
mode: scheduled
remediation_mode: summary_only
Expand Down Expand Up @@ -65,7 +65,7 @@ wrkr action pr-comment --changed-paths ".codex/config.toml" --risk-delta 2.8 --c
```

```yaml
- uses: Clyra-AI/wrkr@v1.11.2
- uses: Clyra-AI/wrkr@v1.12.0
with:
mode: scheduled
target_mode: repo
Expand Down
6 changes: 3 additions & 3 deletions docs/install/minimal-dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The main README landing page surfaces Homebrew, the pinned Go install path below
## Go-only pinned install

```bash
WRKR_VERSION="v1.11.2"
WRKR_VERSION="v1.12.0"
go install github.com/Clyra-AI/wrkr/cmd/wrkr@"${WRKR_VERSION}"
```

Expand Down Expand Up @@ -56,6 +56,6 @@ Install commands above are validated by release UAT together with the public `wr

```bash
scripts/test_uat_local.sh --skip-global-gates
scripts/test_uat_local.sh --release-version v1.11.2 --skip-global-gates
scripts/test_uat_local.sh --release-version v1.11.2 --brew-formula Clyra-AI/tap/wrkr --skip-global-gates
scripts/test_uat_local.sh --release-version v1.12.0 --skip-global-gates
scripts/test_uat_local.sh --release-version v1.12.0 --brew-formula Clyra-AI/tap/wrkr --skip-global-gates
```
2 changes: 1 addition & 1 deletion docs/trust/release-integrity.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ scripts/test_uat_local.sh
scripts/test_uat_local.sh --skip-global-gates

# Validate exact public install commands (brew + pinned go install) for a published tag
scripts/test_uat_local.sh --release-version v1.11.2 --brew-formula Clyra-AI/tap/wrkr
scripts/test_uat_local.sh --release-version v1.12.0 --brew-formula Clyra-AI/tap/wrkr
```

## Changelog finalization
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"validation_contract_version": 2,
"validated_content_sha256": "dd415decf316715a749d6c87f7e2b4e9de4023ba8af68f932f3d406c210a15cd",
"validated_content_sha256": "38fc0fde6c5e6e4ddcc0130a367bdfaf33608f18395b9a0a5333892ac7915789",
"validation_scope_paths": [
".github/workflows",
"Makefile",
Expand Down
Loading