Skip to content

Commit 6461084

Browse files
Test Userclaude
andcommitted
fix: use versioned URL for install.sh in README
- Changed install.sh URL from /main/ to /v2.5.15/ - Updated .releaserc.json to auto-update README version on release - Added README.md to semantic-release assets 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent cd29c0c commit 6461084

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,11 +236,12 @@ jobs:
236236
run: |
237237
python3 -m pip install --upgrade pip
238238
python3 -m pip install pytest pytest-cov
239+
python3 -m pip install rich InquirerPy httpx typer platformdirs
239240
240241
- name: Run unit tests with coverage
241242
run: |
242243
python3 -m pytest tests/unit/ -v \
243-
--cov=.claude/rules --cov=scripts \
244+
--cov=.claude/rules --cov=installer \
244245
--cov-report=term --cov-report=xml
245246
246247
- name: Run E2E tests

.releaserc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
[
2525
"@semantic-release/exec",
2626
{
27-
"prepareCmd": "sed -i 's/^__version__ = \".*\"/__version__ = \"${nextRelease.version}\"/' installer/__init__.py"
27+
"prepareCmd": "sed -i 's/^__version__ = \".*\"/__version__ = \"${nextRelease.version}\"/' installer/__init__.py && sed -i 's|claude-codepro/v[0-9.]*|claude-codepro/v${nextRelease.version}|g' README.md"
2828
}
2929
],
3030
[
3131
"@semantic-release/git",
3232
{
33-
"assets": ["installer/__init__.py"],
33+
"assets": ["installer/__init__.py", "README.md"],
3434
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
3535
}
3636
],

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Start shipping systematically with Spec-Driven Development, Skills, TDD, Semanti
2424
Run this command in **any project directory** for a **fresh install** or to **update to the latest version**:
2525

2626
```bash
27-
curl -fsSL https://raw.githubusercontent.com/maxritter/claude-codepro/main/install.sh | bash
27+
curl -fsSL https://raw.githubusercontent.com/maxritter/claude-codepro/v2.5.15/install.sh | bash
2828
```
2929

3030
The installer will guide you through the setup process with interactive prompts.

0 commit comments

Comments
 (0)