diff --git a/CHANGELOG.md b/CHANGELOG.md index 3099d542d8..41eebe64d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ # Svelte changelog -## Unreleased +## 3.52.0 -* Support `|important` modifier to style directive ([#7489](https://github.com/sveltejs/svelte/pull/7489)) +* Throw compile-time error when attempting to update `const` variable ([#4895](https://github.com/sveltejs/svelte/issues/4895)) * Warn when using `` without `rel="noreferrer"` ([#6188](https://github.com/sveltejs/svelte/issues/6188)) -* Throw helpful compiler error for attempting to update `const` variable ([#4895](https://github.com/sveltejs/svelte/issues/4895)) -* Refix hydration with `{@html}` and components in `` ([#7941](https://github.com/sveltejs/svelte/pull/7941)) +* Support `style:foo|important` modifier ([#7365](https://github.com/sveltejs/svelte/issues/7365)) +* Fix hydration regression with `{@html}` and components in `` ([#7941](https://github.com/sveltejs/svelte/pull/7941)) ## 3.51.0 diff --git a/package-lock.json b/package-lock.json index dec2c8ef0e..cc2e097814 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "svelte", - "version": "3.51.0", + "version": "3.52.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "svelte", - "version": "3.49.0", + "version": "3.52.0", "license": "MIT", "devDependencies": { "@ampproject/remapping": "^0.3.0", diff --git a/package.json b/package.json index c9a67c9311..30afca4209 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svelte", - "version": "3.51.0", + "version": "3.52.0", "description": "Cybernetically enhanced web apps", "module": "index.mjs", "main": "index",