Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Change Log

## v0.4.0

- The supported file extension of `BasisuLoader` is changed from `.basisu_ktx2` to `.basisu.ktx2`
- `bevy_basisu_loader_sys/build-wasm-cli` doesn't pass emcc `-msimd128` and wasm-opt `--enable-simd --enable-bulk-memory-opt --enable-nontrapping-float-to-int` flags by default.

## v0.3.2

- Serde `BasisuLoaderSettings::force_transcode_target`

## v0.3.1

- Bump version to fix release CI

## v0.3.0

- Update bevy to 0.18
- Update basis_universal to v2.0.2, support the new ASTC LDR 4x4-12x12 and XUASTC LDR 4x4-12x12 formats in basis_universal v2.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "bevy_basisu_loader"
version = "0.3.2"
version = "0.4.0"
edition = "2024"
repository.workspace = true
license.workspace = true
description = "Provides a cross-platform, size-optimized KTX2 Basis Universal texture loader for Bevy"
keywords = ["bevy", "basis-universal", "asset", "transcoder"]
exclude = ["vendor/", "assets/", "examples/", "web/", "/.*"]
exclude = ["vendor/", "assets/", "examples/", "web/", "/.*", "CHANGELOG.md"]

[workspace.package]
repository = "https://github.com/beicause/bevy_basisu_loader"
Expand All @@ -22,7 +22,7 @@ bevy = { version = "0.18", default-features = false, features = [
serde = { version = "1", features = ["derive"] }
thiserror = { version = "2", default-features = false }
log = { version = "0.4", default-features = false }
bevy_basisu_loader_sys = { version = "0.3", path = "crates/basisu_sys" }
bevy_basisu_loader_sys = { version = "0.4", path = "crates/basisu_sys" }

[workspace]
members = ["crates/*", "examples/test_scene"]
Expand Down
2 changes: 1 addition & 1 deletion crates/basisu_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_basisu_loader_sys"
version = "0.3.2"
version = "0.4.0"
edition = "2024"
repository.workspace = true
license.workspace = true
Expand Down