From 976c33602e91a07efbe1dd5352d980f5c092ce0b Mon Sep 17 00:00:00 2001 From: Simonas Kazlauskas Date: Tue, 18 Mar 2025 21:51:34 +0200 Subject: [PATCH 1/2] update old github actions --- .github/workflows/test.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 42ad6ac..2ce6089 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,7 +29,7 @@ jobs: mode: -Zminimal-versions timeout-minutes: 10 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Rust ${{ matrix.rust_toolchain }} uses: actions-rs/toolchain@v1 with: @@ -65,7 +65,7 @@ jobs: clang_cl: C:/msys64/mingw32/bin/clang-cl.exe package: mingw-w64-i686-clang steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: msys2/setup-msys2@v2 with: release: false @@ -102,7 +102,7 @@ jobs: mingw_path: C:/msys64/mingw32/bin package: mingw-w64-i686-gcc steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: msys2/setup-msys2@v2 with: release: false @@ -135,8 +135,8 @@ jobs: - x86_64-pc-windows-gnullvm manifest: ["psm/Cargo.toml", "Cargo.toml"] steps: - - uses: actions/checkout@v2 - - uses: actions/cache@v2 + - uses: actions/checkout@v4 + - uses: actions/cache@v4 with: path: llvm-mingw-version key: ${{ env.LLVM_MINGW_VERSION }} @@ -187,7 +187,7 @@ jobs: mode: ["--release", "-Zminimal-versions", ""] timeout-minutes: 10 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Rust uses: actions-rs/toolchain@v1 with: @@ -215,7 +215,7 @@ jobs: manifest: ["psm/Cargo.toml", "Cargo.toml"] timeout-minutes: 10 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Rust uses: actions-rs/toolchain@v1 with: @@ -254,7 +254,7 @@ jobs: manifest: ["psm/Cargo.toml", "Cargo.toml"] timeout-minutes: 10 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Rust nightly uses: actions-rs/toolchain@v1 with: @@ -282,7 +282,7 @@ jobs: manifest: ["psm/Cargo.toml", "Cargo.toml"] timeout-minutes: 10 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Rust uses: actions-rs/toolchain@v1 with: @@ -309,7 +309,7 @@ jobs: xwin_version: ["0.1.6"] timeout-minutes: 10 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Rust uses: actions-rs/toolchain@v1 with: @@ -355,7 +355,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Install Rust nightly uses: actions-rs/toolchain@v1 with: From 2813329e71d80c6e026638bf22002d09eb9fa773 Mon Sep 17 00:00:00 2001 From: Simonas Kazlauskas Date: Tue, 18 Mar 2025 21:52:18 +0200 Subject: [PATCH 2/2] stacker 0.1.20 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ad492fe..ef48a05 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stacker" -version = "0.1.19" +version = "0.1.20" edition = "2021" rust-version = "1.63" authors = ["Alex Crichton ", "Simonas Kazlauskas "] @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/rust-lang/stacker" homepage = "https://github.com/rust-lang/stacker" -documentation = "https://docs.rs/stacker/0.1.19" +documentation = "https://docs.rs/stacker/0.1.20" description = """ A stack growth library useful when implementing deeply recursive algorithms that may accidentally blow the stack.