Skip to content

Commit

Permalink
Increase the version to 0.25 and fix the sdl2 installation (#563)
Browse files Browse the repository at this point in the history
* increase version

* rm --no-cache
  • Loading branch information
cospectrum authored Mar 30, 2024
1 parent 8c3ae86 commit 9af29bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/safety.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,13 @@ jobs:
submodules: true
- name: Install nightly
uses: dtolnay/rust-toolchain@nightly
- run: |
sudo apt update
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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 9af29bf

Please sign in to comment.