-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docs: Release-Note Generation overhaul
the introduction of semantic versioning with version 32 brought new challenges in the parsing, sorting and grouping the version names for the release notes. Added the necessary functionality to the `generate_release_notes.py` script, effectively rewriting it. The intent was the following: * Handle both the old and new style of semantic versioning * Simplify the code in the jinja template `release-notes.md.j2` * Remove code from the python script that made it too general, sharpened it for its intended purpose. **NOTE** amended the flake8 config to match the rucio flake8 config
- Loading branch information
Showing
4 changed files
with
94 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/python | ||
#!/usr/bin/env python3 | ||
import os | ||
import re | ||
from dataclasses import dataclass | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters