Skip to content

Commit 9d40f28

Browse files
binarykclaude
andcommitted
fix: release workflow YAML syntax and bump to 0.15.1
- Fixed multiline notes using heredoc with --notes-file - Bump version to 0.15.1 to test the workflow 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 2e2bc15 commit 9d40f28

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,16 @@ jobs:
4444
VERSION="${{ steps.version.outputs.version }}"
4545
COMMIT_MSG=$(git log -1 --pretty=%B | head -1)
4646
47-
# Create tag
4847
git config user.name "GitHub Actions"
4948
git config user.email "[email protected]"
5049
git tag -a "v$VERSION" -m "Release v$VERSION"
5150
git push origin "v$VERSION"
5251
53-
# Create release
54-
gh release create "v$VERSION" \
55-
--title "v$VERSION" \
56-
--notes "## Changes
52+
cat <<EOF | gh release create "v$VERSION" --title "v$VERSION" --notes-file -
53+
## Changes
5754
58-
${COMMIT_MSG}
55+
$COMMIT_MSG
5956
60-
---
61-
*Auto-generated release*"
57+
---
58+
*Auto-generated release*
59+
EOF

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "aidocs"
3-
version = "0.15.0"
3+
version = "0.15.1"
44
description = "AI-powered documentation generator for web applications. Install docs commands into your Claude Code project."
55
readme = "README.md"
66
license = { text = "MIT" }

src/aidocs_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""AI-powered documentation generator CLI for Claude Code projects."""
22

3-
__version__ = "0.15.0"
3+
__version__ = "0.15.1"
44

55
from .cli import app
66

0 commit comments

Comments
 (0)