Version Packages (next) (#13272)

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

@ -152,6 +152,7 @@
"dull-worms-relax", "dull-worms-relax",
"early-ads-tie", "early-ads-tie",
"early-months-whisper", "early-months-whisper",
"early-taxis-allow",
"eight-carrots-hunt", "eight-carrots-hunt",
"eight-comics-tell", "eight-comics-tell",
"eight-cougars-watch", "eight-cougars-watch",
@ -362,6 +363,7 @@
"itchy-peaches-compare", "itchy-peaches-compare",
"itchy-pianos-marry", "itchy-pianos-marry",
"itchy-terms-guess", "itchy-terms-guess",
"khaki-camels-punch",
"khaki-cheetahs-refuse", "khaki-cheetahs-refuse",
"khaki-cooks-develop", "khaki-cooks-develop",
"khaki-donkeys-jump", "khaki-donkeys-jump",
@ -755,6 +757,7 @@
"strong-pans-doubt", "strong-pans-doubt",
"stupid-bottles-lay", "stupid-bottles-lay",
"stupid-cars-behave", "stupid-cars-behave",
"stupid-dodos-hide",
"stupid-parents-crash", "stupid-parents-crash",
"stupid-rivers-stare", "stupid-rivers-stare",
"sweet-bottles-check", "sweet-bottles-check",

@ -1,5 +1,15 @@
# svelte # svelte
## 5.0.0-next.248
### Patch Changes
- feat: provide guidance in browser console when logging $state objects ([#13142](https://github.com/sveltejs/svelte/pull/13142))
- fix: ensure correct parent effect is associated with render effects ([#13274](https://github.com/sveltejs/svelte/pull/13274))
- feat: unwrap function expressions where possible, and optimise bindings ([#13269](https://github.com/sveltejs/svelte/pull/13269))
## 5.0.0-next.247 ## 5.0.0-next.247
### 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.247", "version": "5.0.0-next.248",
"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.247'; export const VERSION = '5.0.0-next.248';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save