summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-06-29 19:32:41 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-06-29 19:32:41 +0200
commit18cf8b9a4e75585971b7f1944f2da8d3162742c8 (patch)
tree79ded69fcdd18ce6cfcc57b4441159a081dd578a /script
parentcc9c142bb2cbb0ae9de67fdb19869749d2b839e1 (diff)
downloadastroid-git-18cf8b9a4e75585971b7f1944f2da8d3162742c8.tar.gz
Normalize capitalization of 'Release date' between astroid and pylint
The way pylint does it makes more sense
Diffstat (limited to 'script')
-rw-r--r--script/bump_changelog.py4
-rw-r--r--script/test_bump_changelog.py46
2 files changed, 25 insertions, 25 deletions
diff --git a/script/bump_changelog.py b/script/bump_changelog.py
index bce9e845..be8d00a1 100644
--- a/script/bump_changelog.py
+++ b/script/bump_changelog.py
@@ -11,11 +11,11 @@ from typing import List
DEFAULT_CHANGELOG_PATH = Path("ChangeLog")
-RELEASE_DATE_TEXT = "Release Date: TBA"
+RELEASE_DATE_TEXT = "Release date: TBA"
WHATS_NEW_TEXT = "What's New in astroid"
TODAY = datetime.now()
FULL_WHATS_NEW_TEXT = WHATS_NEW_TEXT + " {version}?"
-NEW_RELEASE_DATE_MESSAGE = "Release Date: {}".format(TODAY.strftime("%Y-%m-%d"))
+NEW_RELEASE_DATE_MESSAGE = "Release date: {}".format(TODAY.strftime("%Y-%m-%d"))
def main() -> None:
diff --git a/script/test_bump_changelog.py b/script/test_bump_changelog.py
index ea587335..8de826f4 100644
--- a/script/test_bump_changelog.py
+++ b/script/test_bump_changelog.py
@@ -59,15 +59,15 @@ def test_get_next_version(version, version_type, expected_version, expected_vers
"""
What's New in astroid 2.7.0?
============================
-Release Date: TBA
+Release date: TBA
What's New in astroid 2.6.1?
============================
-Release Date: TBA
+Release date: TBA
What's New in astroid 2.6.0?
============================
-Release Date: TBA
+Release date: TBA
""",
"2.6.1",
r"There should be only two release dates 'TBA' \(2.6.1 and 2.7.0\)",
@@ -79,7 +79,7 @@ astroid's ChangeLog
What's New in astroid 2.6.0?
============================
-Release Date: TBA
+Release date: TBA
""",
"2.6.1",
"text for this version '2.6.1' did not exists",
@@ -88,11 +88,11 @@ Release Date: TBA
"""
What's New in astroid 2.6.2?
============================
-Release Date: TBA
+Release date: TBA
What's New in astroid 2.6.1?
============================
-Release Date: TBA
+Release date: TBA
""",
"2.6.1",
"The text for the next version '2.6.2' already exists",
@@ -101,11 +101,11 @@ Release Date: TBA
"""
What's New in astroid 3.0.0?
============================
-Release Date: TBA
+Release date: TBA
What's New in astroid 2.6.10?
============================
-Release Date: TBA
+Release date: TBA
""",
"3.0.0",
r"There should be only one release date 'TBA' \(3.0.0\)",
@@ -114,11 +114,11 @@ Release Date: TBA
"""
What's New in astroid 2.7.0?
============================
-Release Date: TBA
+Release date: TBA
What's New in astroid 2.6.10?
============================
-Release Date: TBA
+Release date: TBA
""",
"2.7.0",
r"There should be only one release date 'TBA' \(2.7.0\)",
@@ -140,7 +140,7 @@ astroid's ChangeLog
What's New in astroid 2.6.1?
============================
-Release Date: TBA
+Release date: TBA
"""
expected_beginning = """
===================
@@ -149,13 +149,13 @@ astroid's ChangeLog
What's New in astroid 2.6.2?
============================
-Release Date: TBA
+Release date: TBA
What's New in astroid 2.6.1?
============================
-Release Date: 20"""
+Release date: 20"""
new_content = transform_content(old_content, "2.6.1")
assert new_content[: len(expected_beginning)] == expected_beginning
@@ -169,7 +169,7 @@ astroid's ChangeLog
What's New in astroid 2.7.0?
============================
-Release Date: TBA
+Release date: TBA
"""
expected_beginning = """
===================
@@ -178,19 +178,19 @@ astroid's ChangeLog
What's New in astroid 2.8.0?
============================
-Release Date: TBA
+Release date: TBA
What's New in astroid 2.7.1?
============================
-Release Date: TBA
+Release date: TBA
What's New in astroid 2.7.0?
============================
-Release Date: 20"""
+Release date: 20"""
new_content = transform_content(old_content, "2.7.0")
assert new_content[: len(expected_beginning)] == expected_beginning
@@ -205,15 +205,15 @@ astroid's ChangeLog
What's New in astroid 3.0.0?
============================
-Release Date: TBA
+Release date: TBA
What's New in astroid 2.7.1?
============================
-Release Date: 2020-04-03
+Release date: 2020-04-03
What's New in astroid 2.7.0?
============================
-Release Date: 2020-04-01
+Release date: 2020-04-01
"""
expected_beginning = """
===================
@@ -222,18 +222,18 @@ astroid's ChangeLog
What's New in astroid 3.1.0?
============================
-Release Date: TBA
+Release date: TBA
What's New in astroid 3.0.1?
============================
-Release Date: TBA
+Release date: TBA
What's New in astroid 3.0.0?
============================
-Release Date: 20"""
+Release date: 20"""
new_content = transform_content(old_content, "3.0.0")
assert new_content[: len(expected_beginning)] == expected_beginning