Skip to content

Commit 81703c6

Browse files
Update gh actions
1 parent 8e404b0 commit 81703c6

2 files changed

Lines changed: 3 additions & 8 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,8 @@ jobs:
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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "claude-monitor"
7-
version = "1.0.17"
7+
version = "1.0.18"
88
description = "A real-time terminal monitoring tool for Claude AI token usage"
99
readme = "README.md"
1010
license = {text = "MIT"}

0 commit comments

Comments
 (0)