Skip to content

Commit b4aced5

Browse files
ivg-designclaude
andcommitted
v0.4.76: Enhanced array/object formatting and folding :release
- Arrays and objects now display as multi-line JSON for better readability - Fixed double-indentation issue preventing folding chevrons - Improved console output formatting for complex data structures - Preserved original stack trace formatting for VS Code folding - Fixed GitHub Actions workflow for case-insensitive changelog 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 40c9d96 commit b4aced5

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,20 @@ jobs:
7070
run: |
7171
VERSION="${{ steps.version.outputs.version }}"
7272
73-
# Extract changelog section for this version
73+
# Extract changelog section for this version (try both case variations)
7474
CHANGELOG_SECTION=$(awk "
7575
/^## \[$VERSION\]/ { found=1; next }
7676
/^## \[/ && found { exit }
7777
found && /^###/ { print \$0; next }
7878
found && /^-/ { print \$0; next }
7979
found && NF > 0 { print \$0 }
80-
" changelog.md)
80+
" CHANGELOG.md 2>/dev/null || awk "
81+
/^## \[$VERSION\]/ { found=1; next }
82+
/^## \[/ && found { exit }
83+
found && /^###/ { print \$0; next }
84+
found && /^-/ { print \$0; next }
85+
found && NF > 0 { print \$0 }
86+
" changelog.md 2>/dev/null || echo "")
8187
8288
if [ -z "$CHANGELOG_SECTION" ]; then
8389
# If no specific changelog, get latest commits

0 commit comments

Comments
 (0)