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

@ -1,5 +1,19 @@
# svelte # 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 ## 5.0.0-next.190
### Patch Changes ### Patch Changes

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

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

Loading…
Cancel
Save