Version Packages (next) (#12487)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12503/head svelte@5.0.0-next.191
github-actions[bot] 1 year ago committed by GitHub
parent 5d82573dcd
commit 919e7adaa8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -164,6 +164,7 @@
"famous-pants-pay",
"fast-donkeys-pay",
"fast-penguins-matter",
"fast-toes-act",
"fast-weeks-clean",
"few-badgers-guess",
"few-cheetahs-taste",
@ -258,6 +259,7 @@
"heavy-doors-applaud",
"heavy-ducks-leave",
"heavy-ears-rule",
"heavy-feet-attend",
"hip-balloons-begin",
"hip-garlics-tap",
"hip-months-breathe",
@ -374,6 +376,7 @@
"moody-owls-cry",
"moody-sheep-type",
"moody-toys-relax",
"nasty-carrots-develop",
"nasty-glasses-begin",
"nasty-lions-double",
"nasty-yaks-peel",
@ -440,6 +443,7 @@
"poor-seahorses-flash",
"popular-apes-bathe",
"popular-cameras-tie",
"popular-cups-bathe",
"popular-feet-rule",
"popular-games-hug",
"popular-ligers-perform",
@ -510,6 +514,7 @@
"sharp-kids-happen",
"sharp-tomatoes-learn",
"shiny-baboons-play",
"shiny-kangaroos-move",
"shiny-mayflies-clean",
"shiny-melons-love",
"shiny-months-tease",

@ -1,5 +1,19 @@
# svelte
## 5.0.0-next.191
### Patch Changes
- fix: properly assign trailing comments ([#12471](https://github.com/sveltejs/svelte/pull/12471))
- breaking: remove deep reactivity from non-bindable props ([#12484](https://github.com/sveltejs/svelte/pull/12484))
- fix: ensure async initial store value is noticed ([#12486](https://github.com/sveltejs/svelte/pull/12486))
- fix: don't add imports to hoisted event parameters ([#12493](https://github.com/sveltejs/svelte/pull/12493))
- fix: set `volume` through DOM property rather than attribute ([#12485](https://github.com/sveltejs/svelte/pull/12485))
## 5.0.0-next.190
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.190",
"version": "5.0.0-next.191",
"type": "module",
"types": "./types/index.d.ts",
"engines": {

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string}
*/
export const VERSION = '5.0.0-next.190';
export const VERSION = '5.0.0-next.191';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save