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

## [Unreleased]

### Fixed

- Let Homebrew derive the formula version from the tagged release URL so generated formulas pass strict audit.

## [0.4.2] - 2026-08-20

### Added
Expand Down
5 changes: 5 additions & 0 deletions scripts/check-release-contract.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,9 @@ if grep -Eq 'git (commit|push origin HEAD:main)' scripts/release.sh; then
exit 1
fi

if grep -Fq 'version "$version"' scripts/release.sh; then
echo "release.sh must let Homebrew derive the version from the release URL" >&2
exit 1
fi

echo "Release contract OK: $count targets, preparation separated from publication."
1 change: 0 additions & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ cat > "$tap_tmp/tap/Formula/agentlink.rb" <<EOF
class Agentlink < Formula
desc "Sync one AGENTS.md to every AI coding tool - symlinks, no codegen"
homepage "https://agentlink.run/"
version "$version"
license "MIT"

on_macos do
Expand Down