File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6161 VERSION="${{ needs.check-version.outputs.version }}"
6262 echo "Extracting changelog for version $VERSION"
6363
64- # Extract the changelog section for this version
65- awk -v ver="## \\[$VERSION\\]" '
66- BEGIN { found=0 }
67- $0 ~ ver { found=1; next }
68- found && /^## \[/ { exit }
69- found { print }
70- ' CHANGELOG.md > release_notes.md
64+ # Extract the changelog section for this version using sed
65+ sed -n "/^## \\[$VERSION\\]/,/^## \\[/{/^## \\[$VERSION\\]/d; /^## \\[/q; /^$/d; p}" CHANGELOG.md > release_notes.md
7166
7267 # If no changelog found, create a simple message
7368 if [ ! -s release_notes.md ]; then
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " claude-monitor"
7- version = " 1.0.17 "
7+ version = " 1.0.18 "
88description = " A real-time terminal monitoring tool for Claude AI token usage"
99readme = " README.md"
1010license = {text = " MIT" }
You can’t perform that action at this time.
0 commit comments