diff --git a/CHANGELOG.md b/CHANGELOG.md index 826b4e6..623f7b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.3.1] - 2024-12-08 + +### Changed +* fix building for `wasm` + ## [0.3.0] - 2024-12-04 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 6e33285..b61ca77 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_libgdx_atlas" -version = "0.3.0" +version = "0.3.1" edition = "2021" authors = ["Rustunit "] description = "Support loading `libgdx.atlas` files (used for sprite sheets and such) as Bevy assets." @@ -22,7 +22,7 @@ panic = "deny" bevy = { version = "0.15", default-features = false, features = [ "bevy_asset", "bevy_sprite", - "basis-universal", + "png", ] } thiserror = "1.0"