MCPcopy Create free account
hub / github.com/agentforce314/clawcodex / get_release_notes_for_version

Function get_release_notes_for_version

src/utils/release_notes.py:73–78  ·  view source on GitHub ↗

TS ``getReleaseNotesForVersion`` (releaseNotes.ts:415-426).

(version: str, content: str)

Source from the content-addressed store, hash-verified

71
72
73def get_release_notes_for_version(version: str, content: str) -> list[str]:
74 """TS ``getReleaseNotesForVersion`` (releaseNotes.ts:415-426)."""
75 try:
76 return parse_changelog(content).get(normalize_public_version(version), [])
77 except Exception:
78 return []
79
80
81def is_release_section_header(note: str) -> bool:

Callers 2

release_notes_callFunction · 0.90

Calls 3

parse_changelogFunction · 0.85
normalize_public_versionFunction · 0.85
getMethod · 0.45

Tested by 1