Skip to content

Commit

Permalink
update SDL_image to 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maia-s committed Feb 2, 2025
1 parent 67273f0 commit 3ee25f1
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sdl3-image-src/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sdl3-image-src"
version = "3.1.1-prerelease-12-gb56698cc"
version = "3.2.0"
edition = "2021"
authors = ["SDL developers"]
license = "Zlib"
Expand Down
2 changes: 1 addition & 1 deletion sdl3-image-src/SDL_image
Submodule SDL_image updated 1 files
+51 −48 examples/showimage.c
12 changes: 6 additions & 6 deletions sdl3-image-src/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ pub const SOURCE_DIR: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/SDL_image");
pub const SOURCE_DIR: &str = concat!(env!("CARGO_MANIFEST_DIR"), "\\SDL_image");

/// Revision
pub const REVISION: &str = "SDL3_image-prerelease-3.1.1-12-gb56698cc";
pub const REVISION: &str = "SDL3_image-release-3.2.0";

/// Version part of the revision
pub const VERSION: &str = "3.1.1";
pub const VERSION: &str = "3.2.0";

/// Tag part of the revision
pub const REVISION_TAG: &str = "prerelease-3.1.1";
pub const REVISION_TAG: &str = "release-3.2.0";

/// Tag part of the revision without version
pub const REVISION_TAG_BASE: &str = "prerelease";
pub const REVISION_TAG_BASE: &str = "release";

/// Offset from tag part of the revision
pub const REVISION_OFFSET: &str = "12";
pub const REVISION_OFFSET: &str = "0";

/// Hash part of the revision
pub const REVISION_HASH: &str = "gb56698cc";
pub const REVISION_HASH: &str = "g4a762bdf";
2 changes: 1 addition & 1 deletion sdl3-image-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ version = "0.1.2"
optional = true

[build-dependencies.sdl3-image-src]
version = "3.1.1-prerelease-12-gb56698cc"
version = "3.2.0"
path = "../sdl3-image-src"
optional = true

Expand Down
2 changes: 1 addition & 1 deletion sdl3-image-sys/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# sdl3-image-sys

This version of `sdl3-image-sys` has bindings for SDL_image version `3.1.1-prerelease-12-gb56698cc` and earlier.
This version of `sdl3-image-sys` has bindings for SDL_image version `3.2.0` and earlier.

0 comments on commit 3ee25f1

Please sign in to comment.