Skip to content

Commit 7fbf565

Browse files
authored
fix: bump version to 0.1.5 for next release (#60)
1 parent 61a814b commit 7fbf565

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash0-agent-plugin",
3-
"version": "0.1.2",
3+
"version": "0.1.5",
44
"description": "OpenTelemetry observability for Claude Code sessions. Captures tool calls, LLM invocations, token usage, and errors as OTel traces.",
55
"author": {
66
"name": "Dash0"

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,13 @@ jobs:
112112
run: |
113113
VERSION=$(grep '^VERSION=' scripts/on-event.sh | sed 's/VERSION="//' | sed 's/"//')
114114
echo "Checking release assets for v$VERSION"
115+
# Check if the release tag exists at all — if not, this is a
116+
# version bump PR preparing for a future release. Warn but don't fail.
117+
TAG_STATUS=$(curl -sI -o /dev/null -w "%{http_code}" -L "https://github.com/dash0hq/dash0-agent-plugin/releases/tag/v${VERSION}")
118+
if [ "$TAG_STATUS" = "404" ]; then
119+
echo "::warning::Release v$VERSION does not exist yet — this is expected for version bump PRs. Will be validated after release."
120+
exit 0
121+
fi
115122
for BINARY in on-event-linux-amd64 on-event-linux-arm64 on-event-darwin-amd64 on-event-darwin-arm64; do
116123
URL="https://github.com/dash0hq/dash0-agent-plugin/releases/download/v${VERSION}/${BINARY}"
117124
STATUS=$(curl -sI -o /dev/null -w "%{http_code}" -L "$URL")

scripts/on-event.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ fi
2626
PLUGIN_DATA="${CLAUDE_PLUGIN_DATA:?CLAUDE_PLUGIN_DATA not set}"
2727
BIN_DIR="$PLUGIN_DATA/bin"
2828
REPO="dash0hq/dash0-agent-plugin"
29-
VERSION="0.1.2"
29+
VERSION="0.1.5"
3030

3131
# Detect OS and architecture.
3232
OS=$(uname -s | tr '[:upper:]' '[:lower:]')

0 commit comments

Comments
 (0)