From 5121a3cba8d21d8b430590971aa495f9cdbd101b Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Wed, 15 May 2019 18:27:13 -0400 Subject: [PATCH] -> v3.4.0 --- CHANGELOG.md | 9 +++++++++ package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d6a7b34dd..6b609578b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Svelte changelog +## 3.4.0 + +* Allow custom element to be defined without a `tag` ([#2417](https://github.com/sveltejs/svelte/issues/2417)) +* Fix parsing of quote marks inside attribute values ([#2715](https://github.com/sveltejs/svelte/pull/2754)) +* Convert `svelte/store` to TypeScript ([#2733](https://github.com/sveltejs/svelte/pull/2733)) +* Allow `debug` tags to include hoisted values ([#2764](https://github.com/sveltejs/svelte/issues/2764)) +* Parse error if attribute name is missing `=` ([#1513](https://github.com/sveltejs/svelte/pull/2770)) +* Allow reactive declarations to depend on mutated `const` values ([#2728](https://github.com/sveltejs/svelte/issues/2728)) + ## 3.3.0 * Allow multiple event listeners on a single node ([#2688](https://github.com/sveltejs/svelte/issues/2688)) diff --git a/package.json b/package.json index bbe8f53898..26f357ccd8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svelte", - "version": "3.3.0", + "version": "3.4.0", "description": "Cybernetically enhanced web apps", "module": "index.mjs", "main": "index",