Skip to content

Commit

Permalink
chore: add support for rustc 1.82 (close #53)
Browse files Browse the repository at this point in the history
  • Loading branch information
godzie44 committed Nov 30, 2024
1 parent 1e03af0 commit 9f34097
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
test:
strategy:
matrix:
rustc_sup_version: [ 1.78.0, 1.79.0, 1.80.0, 1.81.0, 1.82.0 ]
rustc_sup_version: [ 1.79.0, 1.80.0, 1.81.0, 1.82.0, 1.83.0 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Install actual rustc
uses: actions-rs/toolchain@v1
with:
toolchain: 1.82.0
toolchain: 1.83.0
override: true
components: rustfmt, clippy
- name: Run functional tests on own stack unwind implementation
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.82.0
toolchain: 1.83.0
override: true
components: rustfmt, clippy
- name: Set up Python 3.7
Expand All @@ -69,7 +69,7 @@ jobs:
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.82.0
toolchain: 1.83.0
override: true
components: rustfmt, clippy
- name: Install libunwind
Expand Down
1 change: 1 addition & 0 deletions src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ static SUPPORTED_RUSTC: &[(Version, Version)] = &[
(Version((1, 80, 0)), Version((1, 80, u32::MAX))),
(Version((1, 81, 0)), Version((1, 81, u32::MAX))),
(Version((1, 82, 0)), Version((1, 82, u32::MAX))),
(Version((1, 83, 0)), Version((1, 83, u32::MAX))),
];

pub fn supported_versions_to_string() -> String {
Expand Down

0 comments on commit 9f34097

Please sign in to comment.