diff --git a/CHANGELOG.md b/CHANGELOG.md index 074601890..3eb2cdff2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## ✨ **0.8.1** _(2022-09-03)_ + +- #### 🛠 Fixes + + - [Forward compatibility fix for breakage due to a soundness fix in rustc.](https://github.com/sycamore-rs/sycamore/pull/475) + - [Avoid possible shadowing of existing bindings in macro expansion.](https://github.com/sycamore-rs/sycamore/pull/477) + - [Reuse some allocations in `map_keyed` and `map_indexed`.](https://github.com/sycamore-rs/sycamore/pull/478) + - [Add workaround for SVG element tags that clash with HTML elements.](https://github.com/sycamore-rs/sycamore/pull/479) + ## ✨ **0.8.0** _(2022-08-28)_ Release post: https://sycamore-rs.netlify.app/news/announcing-v0.8.0 diff --git a/packages/sycamore-reactive/Cargo.toml b/packages/sycamore-reactive/Cargo.toml index ea107c749..b0f42f7d5 100644 --- a/packages/sycamore-reactive/Cargo.toml +++ b/packages/sycamore-reactive/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["wasm", "gui", "reactive"] license = "MIT" readme = "../../README.md" repository = "https://github.com/sycamore-rs/sycamore" -version = "0.8.0" +version = "0.8.1" [dependencies] ahash = "0.7.6" diff --git a/packages/sycamore/Cargo.toml b/packages/sycamore/Cargo.toml index 1b2a3b3dd..4e08062de 100644 --- a/packages/sycamore/Cargo.toml +++ b/packages/sycamore/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["wasm", "gui", "reactive"] license = "MIT" readme = "../../README.md" repository = "https://github.com/sycamore-rs/sycamore" -version = "0.8.0" +version = "0.8.1" [dependencies] ahash = "0.7.6"