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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [v0.14.12](https://github.com/monkescience/yeet/compare/v0.14.11...v0.14.12) (2026-09-09)

### Bug Fixes

- **deps:** update module charm.land/log/v2 to v2.0.1 (#262) ([d6822e3](https://github.com/monkescience/yeet/commit/d6822e3ab0f8f43b8c5ace7e052ec434ae03d1ca))
- **deps:** update module github.com/google/go-github/v90 to v91 (#265) ([23bc430](https://github.com/monkescience/yeet/commit/23bc4303522b7940ddefda91c2a65e022702e2e1))
- **deps:** update module github.com/yuin/goldmark/v2 to v2.0.1 (#263) ([279f1a0](https://github.com/monkescience/yeet/commit/279f1a0d633e65d2f419c0a80769ce406d4a9926))
- **deps:** update module gitlab.com/gitlab-org/api/client-go/v2 to v2.62.0 (#264) ([8f36d5a](https://github.com/monkescience/yeet/commit/8f36d5a55938f32c90d1fdba971b4bde2b1c6251))

## [v0.14.11](https://github.com/monkescience/yeet/compare/v0.14.10...v0.14.11) (2026-09-05)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ Merge a `feat`, `fix`, or `perf` conventional commit into the release branch. CI
Other installation options:

```sh
go install github.com/monkescience/yeet/cmd/yeet@v0.14.11 # x-yeet-version
docker run --rm ghcr.io/monkescience/yeet:v0.14.11 --help # x-yeet-version
go install github.com/monkescience/yeet/cmd/yeet@v0.14.12 # x-yeet-version
docker run --rm ghcr.io/monkescience/yeet:v0.14.12 --help # x-yeet-version
```

On Windows, install with [Scoop](https://scoop.sh):
Expand Down
6 changes: 3 additions & 3 deletions docs/ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
repositories: ${{ github.event.repository.name }}

- name: Run yeet
uses: docker://ghcr.io/monkescience/yeet:v0.14.11 # x-yeet-version
uses: docker://ghcr.io/monkescience/yeet:v0.14.12 # x-yeet-version
with:
args: release
env:
Expand All @@ -59,7 +59,7 @@ Create a token with the [required scope, role, and repository access](authentica
release:
stage: release
image:
name: ghcr.io/monkescience/yeet:v0.14.11 # x-yeet-version
name: ghcr.io/monkescience/yeet:v0.14.12 # x-yeet-version
entrypoint: [""]
variables:
GIT_STRATEGY: fetch
Expand Down Expand Up @@ -95,7 +95,7 @@ steps:
-w /workspace \
-e AZURE_DEVOPS_SYSTEM_ACCESSTOKEN \
-e BUILD_SOURCEBRANCH \
ghcr.io/monkescience/yeet:v0.14.11 release # x-yeet-version
ghcr.io/monkescience/yeet:v0.14.12 release # x-yeet-version
displayName: Run yeet
env:
AZURE_DEVOPS_SYSTEM_ACCESSTOKEN: $(System.AccessToken)
Expand Down
4 changes: 2 additions & 2 deletions docs/verification.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This expects a certificate issued to `.github/workflows/binaries.yaml` in `monke
cosign verify \
--certificate-identity-regexp 'https://github.com/monkescience/yeet/.github/workflows/image.yaml@.*' \
--certificate-oidc-issuer https://token.actions.githubusercontent.com \
ghcr.io/monkescience/yeet:v0.14.11 # x-yeet-version
ghcr.io/monkescience/yeet:v0.14.12 # x-yeet-version
```

This expects a certificate issued to `.github/workflows/image.yaml` in `monkescience/yeet` by GitHub Actions.
Expand All @@ -38,7 +38,7 @@ This expects provenance from `.github/workflows/binaries.yaml` in `monkescience/
## Container provenance

```sh
gh attestation verify oci://ghcr.io/monkescience/yeet:v0.14.11 --repo monkescience/yeet # x-yeet-version
gh attestation verify oci://ghcr.io/monkescience/yeet:v0.14.12 --repo monkescience/yeet # x-yeet-version
```

This expects provenance from `.github/workflows/image.yaml` in `monkescience/yeet` and reports the source workflow and commit.
Expand Down