Skip to content

Commit f41391d

Browse files
committed
fix(release): ensure curated changelog extraction works and bump to v0.0.93
fix tag-and-release workflow version section matching for dated headings bump integration version to 0.0.93 align top release notes section to v0.0.93
1 parent 007f8bc commit f41391d

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/tag-and-release.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,8 @@ jobs:
5757
- name: Extract version section from RELEASE_NOTES.md
5858
if: env.EXISTS == 'false'
5959
run: |
60-
HEADER="## Version ${VERSION}"
61-
62-
awk -v header="$HEADER" '
63-
$0 == header { found=1; print; next }
60+
awk -v version="$VERSION" '
61+
index($0, "## Version " version) == 1 { found=1; print; next }
6462
found && /^## Version / { exit }
6563
found { print }
6664
' RELEASE_NOTES.md > curated_notes.md

RELEASE_NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release Notes
22

3-
## Version 0.0.92 (2026-06-07)
3+
## Version 0.0.93 (2026-06-07)
44

55
### 🎉 New Features
66

custom_components/octopus_germany/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
"requirements": [
1414
"python-graphql-client>=0.4.3"
1515
],
16-
"version": "0.0.92"
16+
"version": "0.0.93"
1717
}

0 commit comments

Comments
 (0)