Skip to content

Commit da4ae65

Browse files
authored
Merge pull request #2146 from SUSE/rust183
Add Rust 1.83
2 parents 85cd958 + 7775b40 commit da4ae65

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

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.83": datetime.date(2024, 11, 28) + _RUST_SUPPORT_OVERLAP,
2223
"1.82": datetime.date(2024, 10, 17) + _RUST_SUPPORT_OVERLAP,
2324
"1.81": datetime.date(2024, 9, 5) + _RUST_SUPPORT_OVERLAP,
2425
"1.80": datetime.date(2024, 7, 25) + _RUST_SUPPORT_OVERLAP,
@@ -30,7 +31,7 @@
3031
}
3132

3233
# ensure that the **latest** rust version is the last one!
33-
_RUST_VERSIONS = ["1.81", "1.82"]
34+
_RUST_VERSIONS = ["1.82", "1.83"]
3435

3536
assert (
3637
len(_RUST_VERSIONS) == 2

0 commit comments

Comments
 (0)