diff --git a/README.md b/README.md index 2e1e4c7..31cf10e 100644 --- a/README.md +++ b/README.md @@ -134,6 +134,11 @@ wasm-pack build --release example && wc -c example/pkg/lol_alloc_example_bg.wasm # Change log +## 0.4.1: + +- [Avoid assertion messages in free_list_allocator in release builds](https://github.com/Craig-Macomber/lol_alloc/pull/7). + This should improve code size and performance mainly when the size or alignment of allocations is not fully inlined by the compiler. + ## 0.4.0: - Make implementations which are wasm only not available on other targets, instead of failing at runtime. diff --git a/lol_alloc/Cargo.toml b/lol_alloc/Cargo.toml index c05dbce..2d5161c 100644 --- a/lol_alloc/Cargo.toml +++ b/lol_alloc/Cargo.toml @@ -2,7 +2,7 @@ name = "lol_alloc" description = "lol_alloc: A laughably simple wasm global_allocator." readme = "../README.md" -version = "0.4.0" +version = "0.4.1" edition = "2021" repository = "https://github.com/Craig-Macomber/lol_alloc" license = "MIT"