Version Packages (next) (#13696)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13701/head svelte@5.0.0-next.272
github-actions[bot] 11 months ago committed by GitHub
parent 2ca9a81679
commit 0fdfd9c50c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -47,6 +47,7 @@
"brave-gorillas-fold", "brave-gorillas-fold",
"brave-pigs-obey", "brave-pigs-obey",
"brave-points-sleep", "brave-points-sleep",
"brave-rivers-jam",
"brave-shrimps-kiss", "brave-shrimps-kiss",
"brave-walls-destroy", "brave-walls-destroy",
"brave-walls-flow", "brave-walls-flow",
@ -985,6 +986,7 @@
"wicked-wasps-allow", "wicked-wasps-allow",
"wicked-ways-reply", "wicked-ways-reply",
"wicked-years-drive", "wicked-years-drive",
"wild-chairs-build",
"wild-cows-chew", "wild-cows-chew",
"wild-foxes-wonder", "wild-foxes-wonder",
"wild-mice-look", "wild-mice-look",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.272
### Patch Changes
- fix: ensure user effects are correctly executed on initialisation ([#13697](https://github.com/sveltejs/svelte/pull/13697))
- breaking: state mutations inside the template are no longer allowed ([#13660](https://github.com/sveltejs/svelte/pull/13660))
## 5.0.0-next.271 ## 5.0.0-next.271
### 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.271", "version": "5.0.0-next.272",
"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.271'; export const VERSION = '5.0.0-next.272';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save