diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b049da08..4b38edb31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Svelte changelog +## 3.0.1 + +* Prevent text input cursor jumping in Safari ([#2506](https://github.com/sveltejs/svelte/issues/2506)) +* Allow assignments to member expressions ([#2510](https://github.com/sveltejs/svelte/issues/2510)) +* Prevent mutually dependent functions causing an infinite during hoisting ([#2542](https://github.com/sveltejs/svelte/issues/2542)) +* Reuse scheduler promise instead of creating new one each time ([#2555](https://github.com/sveltejs/svelte/pull/2555)) +* Various site/docs fixes + ## 3.0.0 * Everything diff --git a/package.json b/package.json index 44ff6d265..b1b5a5c3b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svelte", - "version": "3.0.0", + "version": "3.0.1", "description": "Cybernetically enhanced web apps", "module": "index.mjs", "main": "index",