From 083dbcba4c85de94f35bc2a5342bc732b1918819 Mon Sep 17 00:00:00 2001 From: Alex Severin Date: Sat, 30 Mar 2024 15:20:57 +0300 Subject: [PATCH 1/2] increase version --- .github/workflows/safety.yml | 6 +++++- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/safety.yml b/.github/workflows/safety.yml index 6e5000b7..cc21b042 100644 --- a/.github/workflows/safety.yml +++ b/.github/workflows/safety.yml @@ -22,9 +22,13 @@ jobs: submodules: true - name: Install nightly uses: dtolnay/rust-toolchain@nightly + - run: | + sudo apt update --no-cache + sudo apt install libsdl2-2.0-0 -y + name: Install sdl2 - run: | # to get the symbolizer for debug symbol resolution - sudo apt install llvm libsdl2-2.0-0 + sudo apt install llvm # to fix buggy leak analyzer: # https://github.com/japaric/rust-san#unrealiable-leaksanitizer # ensure there's a profile.dev section diff --git a/Cargo.toml b/Cargo.toml index 1fe9dbab..e289e23d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imageproc" -version = "0.24.0" +version = "0.25.0" authors = ["theotherphil"] # note: when changed, also update `msrv` in `.github/workflows/check.yml` rust-version = "1.70.0" From ea9a5fac1ba9b88bb7bca024d7893c56d62433c8 Mon Sep 17 00:00:00 2001 From: Alex Severin Date: Sat, 30 Mar 2024 15:24:55 +0300 Subject: [PATCH 2/2] rm --no-cache --- .github/workflows/safety.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/safety.yml b/.github/workflows/safety.yml index cc21b042..f4bf8218 100644 --- a/.github/workflows/safety.yml +++ b/.github/workflows/safety.yml @@ -23,7 +23,7 @@ jobs: - name: Install nightly uses: dtolnay/rust-toolchain@nightly - run: | - sudo apt update --no-cache + sudo apt update sudo apt install libsdl2-2.0-0 -y name: Install sdl2 - run: |