Skip to content

Commit 77b45c0

Browse files
committed
chore: bump Claude CLI to 1.0.115 and update claude.sh version to 0.6.0
- Update Dockerfile, Makefile, and README.md to use Claude CLI 1.0.115 - Increment claude.sh VERSION to 0.6.0
1 parent 4f7a590 commit 77b45c0

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ RUN mkdir -p "$CLAUDE_HOME/.npm-global" && \
138138

139139
# Set npm configuration for claude user and install Claude CLI
140140
USER $CLAUDE_USER
141-
ARG CLAUDE_CODE_VERSION=1.0.95
141+
ARG CLAUDE_CODE_VERSION=1.0.115
142142
RUN npm config set prefix "$CLAUDE_HOME/.npm-global" && \
143143
npm install -g @anthropic-ai/claude-code@${CLAUDE_CODE_VERSION} @mariozechner/claude-trace && \
144144
npm cache clean --force

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
IMAGE_NAME := ghcr.io/thevibeworks/ccyolo
33
TAG := latest
44
CONTAINER_NAME := ccyolo-$(shell basename $(PWD))-$(shell date +%s)
5-
CLAUDE_CODE_VERSION := 1.0.93
5+
CLAUDE_CODE_VERSION := 1.0.115
66

77
export DOCKER_BUILDKIT := 1
88

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ make build
243243
### Custom Claude Version
244244

245245
```bash
246-
make CLAUDE_CODE_VERSION=1.0.93 build # Specific version
246+
make CLAUDE_CODE_VERSION=1.0.115 build # Specific version
247247
make CLAUDE_CODE_VERSION=latest build # Latest version
248248
```
249249

claude.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -e
33

4-
VERSION="0.5.1"
4+
VERSION="0.6.0"
55
DOCKER_IMAGE="${CCYOLO_DOCKER_IMAGE:-ghcr.io/thevibeworks/ccyolo}"
66
DOCKER_TAG="${CCYOLO_DOCKER_TAG:-latest}"
77

0 commit comments

Comments
 (0)