diff options
Diffstat (limited to 'script')
-rw-r--r-- | script/bump_changelog.py | 1 | ||||
-rw-r--r-- | script/fix_documentation.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/script/bump_changelog.py b/script/bump_changelog.py index fca874699..33a264fa1 100644 --- a/script/bump_changelog.py +++ b/script/bump_changelog.py @@ -16,6 +16,7 @@ import logging from datetime import datetime from pathlib import Path +# TODO: 2.14.0 Upgrade bump script DEFAULT_CHANGELOG_PATH = Path("ChangeLog") RELEASE_DATE_TEXT = "Release date: TBA" diff --git a/script/fix_documentation.py b/script/fix_documentation.py index e248f0646..35eed9aff 100644 --- a/script/fix_documentation.py +++ b/script/fix_documentation.py @@ -14,6 +14,7 @@ INVALID_CODE_BLOCK_PATTERN = ( r"(?<=\s`)([\w\-\.\(\)\=]+\s{0,1}[\w\-\.\(\)\=]*)(?=`[,\.]{0,1}\s|$)" ) +# TODO: 2.14.0: Upgrade script for change in changelog DEFAULT_CHANGELOG = "ChangeLog" DEFAULT_SUBTITLE_PREFIX = "What's New in" |