From 9f34097359fbe709b80181dfd4b322bb0ed771c6 Mon Sep 17 00:00:00 2001 From: godzie44 Date: Sat, 30 Nov 2024 17:35:04 +0300 Subject: [PATCH] chore: add support for rustc 1.82 (close #53) --- .github/workflows/ci.yml | 8 ++++---- src/version.rs | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 26f8365..f8f67de 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/src/version.rs b/src/version.rs index 38bbfcd..1e46489 100644 --- a/src/version.rs +++ b/src/version.rs @@ -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 {