Skip to content

Commit 91cd722

Browse files
authored
Merge pull request #2790 from SUSE/rust_188
Roll over rust-stable to 1.88
2 parents 63de124 + 464dec3 commit 91cd722

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bci_build/package/rust.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
# and we give us three weeks of buffer, leading to release date + 6 + 6 + 3
2020
_RUST_SUPPORT_OVERLAP: datetime.timedelta = datetime.timedelta(weeks=6 + 6 + 3)
2121
_RUST_SUPPORT_ENDS = {
22+
"1.88": datetime.date(2025, 6, 26) + _RUST_SUPPORT_OVERLAP,
2223
"1.87": datetime.date(2025, 5, 15) + _RUST_SUPPORT_OVERLAP,
2324
"1.86": datetime.date(2025, 4, 3) + _RUST_SUPPORT_OVERLAP,
2425
"1.85": datetime.date(2025, 2, 20) + _RUST_SUPPORT_OVERLAP,
@@ -35,7 +36,7 @@
3536
}
3637

3738
# ensure that the **latest** rust version is the last one!
38-
_RUST_VERSIONS = ["1.86", "1.87"]
39+
_RUST_VERSIONS = ["1.87", "1.88"]
3940

4041
assert len(_RUST_VERSIONS) == 2, (
4142
"Only two versions of rust must be supported at the same time"

0 commit comments

Comments
 (0)