MCPcopy Create free account
hub / github.com/abbeycode/UnrarKit / print_release_notes

Function print_release_notes

Scripts/get-release-notes.py:23–37  ·  view source on GitHub ↗
(version)

Source from the content-addressed store, hash-verified

21
22
23def print_release_notes(version):
24 version_num, beta_tag, beta_num = get_version_parts(version)
25 change_notes = get_changelog_notes(version_num)
26
27 if beta_tag is None:
28 print(change_notes)
29 return True
30
31 beta_notes = get_beta_notes(beta_num, change_notes)
32
33 if not beta_notes is None:
34 print(beta_notes)
35 return True
36
37 return False
38
39def get_version_parts(version):
40 '''

Callers 1

Calls 3

get_version_partsFunction · 0.85
get_changelog_notesFunction · 0.85
get_beta_notesFunction · 0.85

Tested by

no test coverage detected