Version Packages (next) (#12957)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12960/head svelte@5.0.0-next.232
github-actions[bot] 3 months ago committed by GitHub
parent 9f962d6f81
commit 70ed8cd666
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -278,6 +278,7 @@
"green-hounds-play",
"green-snails-tickle",
"green-tigers-judge",
"green-walls-clap",
"grumpy-avocados-fetch",
"grumpy-insects-sleep",
"grumpy-jars-sparkle",
@ -441,6 +442,7 @@
"neat-ducks-jam",
"neat-files-rescue",
"neat-jokes-beam",
"nervous-adults-sell",
"nervous-berries-boil",
"nervous-dolphins-allow",
"nervous-ducks-repeat",
@ -525,6 +527,7 @@
"proud-pets-hang",
"proud-queens-sniff",
"purple-dragons-peel",
"quick-eagles-sit",
"quick-pumpkins-study",
"quiet-apricots-dream",
"quiet-berries-end",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.232
### Patch Changes
- breaking: remove `$state.link` rune pending further design work ([#12943](https://github.com/sveltejs/svelte/pull/12943))
- fix: ensure `$store` reads are properly transformed ([#12952](https://github.com/sveltejs/svelte/pull/12952))
- breaking: deprecate `context="module"` in favor of `module` ([#12948](https://github.com/sveltejs/svelte/pull/12948))
## 5.0.0-next.231
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.231",
"version": "5.0.0-next.232",
"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.231';
export const VERSION = '5.0.0-next.232';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save