Skip to content

Commit

Permalink
Merge pull request #594 from openedx/update-rtd-links
Browse files Browse the repository at this point in the history
docs: Update release notes link to docs.openedx.org
  • Loading branch information
sarina authored Feb 26, 2025
2 parents 0ee759d + 42506fd commit 00e59e8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions barcalendar.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ def parse_version_name(line):


# Open edX releases
cal.section_note("https://edx.readthedocs.io/projects/edx-developer-docs/en/latest/named_releases.html")
cal.section_note("https://docs.openedx.org/en/latest/community/release_notes/index.html")
cal.set_cycling(3)
names = [
# (Name, Year, Month) when the release happened.
Expand All @@ -455,9 +455,10 @@ def parse_version_name(line):
("Palm", 2023, 6),
("Quince", 2023, 12),
("Redwood", 2024, 6),
("Sumac", 2024, 12),
]
# https://www.treenames.net/common_tree_names.html
future = ["Sumac", "Teak"] + list("UVWXYZ")
future = ["Teak", "Ulmo", "Verawood"] + list("WXYZ")
target_length = 6 # months per release

releases = list(itertools.chain(names, [(name, None, None) for name in future]))
Expand Down

0 comments on commit 00e59e8

Please sign in to comment.