pull/1347/head v1.63.1
Rich Harris 6 years ago
parent 4d40c1184e
commit 424bb1a5de

@ -1,5 +1,9 @@
# Svelte changelog
## 1.63.1
* Allow `observe` method to be overwritten
## 1.63.0
* Add `onstate` and `onupdate` lifecycle hooks and deprecate `component.observe` ([#1197](https://github.com/sveltejs/svelte/issues/1197))

@ -1,6 +1,6 @@
{
"name": "svelte",
"version": "1.63.0",
"version": "1.63.1",
"description": "The magical disappearing UI framework",
"main": "compiler/svelte.js",
"files": [

@ -3,7 +3,6 @@ import {
blankObject,
_differs,
_differsImmutable,
dispatchObservers,
get,
observe,
on,

Loading…
Cancel
Save