Skip to content
This repository was archived by the owner on Jan 30, 2026. It is now read-only.

Commit fa18508

Browse files
committed
chore: Release jjagent version 0.5.0
1 parent 3efd510 commit fa18508

7 files changed

Lines changed: 21 additions & 12 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"name": "schpet"
55
},
66
"description": "marketplace for jjagent claude code plugin",
7-
"version": "0.4.2",
7+
"version": "0.5.0",
88
"plugins": [
99
{
1010
"name": "jjagent",
1111
"description": "setup hooks for jjagent",
12-
"version": "0.4.2",
12+
"version": "0.5.0",
1313
"author": {
1414
"name": "schpet"
1515
},

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jjagent",
33
"description": "Track Claude Code sessions as jujutsu changes",
4-
"version": "0.4.2",
4+
"version": "0.5.0",
55
"author": {
66
"name": "schpet"
77
},

.github/workflows/release.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# This file was autogenerated by dist: https://github.com/astral-sh/cargo-dist
1+
# This file was autogenerated by dist: https://axodotdev.github.io/cargo-dist
22
#
3-
# Copyright 2025 Astral Software Inc.
3+
# Copyright 2022-2024, axodotdev
44
# SPDX-License-Identifier: MIT or Apache-2.0
55
#
66
# CI that:
@@ -58,12 +58,13 @@ jobs:
5858
steps:
5959
- uses: actions/checkout@v4
6060
with:
61+
persist-credentials: false
6162
submodules: recursive
6263
- name: Install dist
6364
# we specify bash to get pipefail; it guards against the `curl` command
6465
# failing. otherwise `sh` won't catch that `curl` returned non-0
6566
shell: bash
66-
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/cargo-dist/releases/download/v0.28.3/cargo-dist-installer.sh | sh"
67+
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.30.3/cargo-dist-installer.sh | sh"
6768
- name: Cache dist
6869
uses: actions/upload-artifact@v4
6970
with:
@@ -117,6 +118,7 @@ jobs:
117118
git config --global core.longpaths true
118119
- uses: actions/checkout@v4
119120
with:
121+
persist-credentials: false
120122
submodules: recursive
121123
- name: Install Rust non-interactively if not already installed
122124
if: ${{ matrix.container }}
@@ -175,6 +177,7 @@ jobs:
175177
steps:
176178
- uses: actions/checkout@v4
177179
with:
180+
persist-credentials: false
178181
submodules: recursive
179182
- name: Install cached dist
180183
uses: actions/download-artifact@v4
@@ -214,8 +217,8 @@ jobs:
214217
- plan
215218
- build-local-artifacts
216219
- build-global-artifacts
217-
# Only run if we're "publishing", and only if local and global didn't fail (skipped is fine)
218-
if: ${{ always() && needs.plan.outputs.publishing == 'true' && (needs.build-global-artifacts.result == 'skipped' || needs.build-global-artifacts.result == 'success') && (needs.build-local-artifacts.result == 'skipped' || needs.build-local-artifacts.result == 'success') }}
220+
# Only run if we're "publishing", and only if plan, local and global didn't fail (skipped is fine)
221+
if: ${{ always() && needs.plan.result == 'success' && needs.plan.outputs.publishing == 'true' && (needs.build-global-artifacts.result == 'skipped' || needs.build-global-artifacts.result == 'success') && (needs.build-local-artifacts.result == 'skipped' || needs.build-local-artifacts.result == 'success') }}
219222
env:
220223
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
221224
runs-on: "ubuntu-22.04"
@@ -224,6 +227,7 @@ jobs:
224227
steps:
225228
- uses: actions/checkout@v4
226229
with:
230+
persist-credentials: false
227231
submodules: recursive
228232
- name: Install cached dist
229233
uses: actions/download-artifact@v4
@@ -288,6 +292,7 @@ jobs:
288292
steps:
289293
- uses: actions/checkout@v4
290294
with:
295+
persist-credentials: true
291296
repository: "schpet/homebrew-tap"
292297
token: ${{ secrets.HOMEBREW_TAP_TOKEN }}
293298
# So we have access to the formula
@@ -334,4 +339,5 @@ jobs:
334339
steps:
335340
- uses: actions/checkout@v4
336341
with:
342+
persist-credentials: false
337343
submodules: recursive

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.5.0] - 2025-12-23
6+
57
### Added
68

79
- allow /jjagent:describe to take a parameter with a message
@@ -118,7 +120,8 @@
118120

119121
- initial release
120122

121-
[Unreleased]: https://github.com/schpet/jjagent/compare/v0.4.2...HEAD
123+
[Unreleased]: https://github.com/schpet/jjagent/compare/v0.5.0...HEAD
124+
[0.5.0]: https://github.com/schpet/jjagent/compare/v0.4.2...v0.5.0
122125
[0.4.2]: https://github.com/schpet/jjagent/compare/v0.4.1...v0.4.2
123126
[0.4.1]: https://github.com/schpet/jjagent/compare/v0.4.0...v0.4.1
124127
[0.4.0]: https://github.com/schpet/jjagent/compare/v0.3.0...v0.4.0

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jjagent"
3-
version = "0.4.2"
3+
version = "0.5.0"
44
edition = "2024"
55
authors = ["Peter Schilling <code@schpet.com>"]
66
repository = "https://github.com/schpet/jjagent"

dist-workspace.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ members = ["cargo:."]
44
# Config for 'dist'
55
[dist]
66
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
7-
cargo-dist-version = "0.28.3"
7+
cargo-dist-version = "0.30.3"
88
# CI backends to support
99
ci = "github"
1010
# The installers to generate for each app

0 commit comments

Comments
 (0)