diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b38edb318..9419304783 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Svelte changelog +## 3.1.0 + +* Allow store subscribe functions to return an object with an `unsubscribe` method, providing native RxJS support ([#2549](https://github.com/sveltejs/svelte/issues/2549)) + ## 3.0.1 * Prevent text input cursor jumping in Safari ([#2506](https://github.com/sveltejs/svelte/issues/2506)) diff --git a/package.json b/package.json index b1b5a5c3b4..85836aaa14 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svelte", - "version": "3.0.1", + "version": "3.1.0", "description": "Cybernetically enhanced web apps", "module": "index.mjs", "main": "index",