Skip to content

Commit

Permalink
Merge pull request #11 from franzs/fix_map_version_number
Browse files Browse the repository at this point in the history
Fix mismatch of version number
  • Loading branch information
franzs authored Dec 19, 2024
2 parents 213b841 + 1c55c23 commit b8d7a7f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions parse_changelog/parse_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ def parse_changelog(html_content):
stripped_p_text = p.text.strip()
if re.match(r'\d+\.\d+(\.\d+)?', stripped_p_text):
version_number = stripped_p_text

if version_number == '9.0.15':
version_number = '9.0.16'

changes = []

for sibling in p.next_siblings:
Expand Down

0 comments on commit b8d7a7f

Please sign in to comment.