Version Packages (next) (#11133)

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

@ -53,6 +53,7 @@
"cold-birds-own", "cold-birds-own",
"cold-masks-learn", "cold-masks-learn",
"cool-ants-leave", "cool-ants-leave",
"cool-comics-marry",
"cool-peas-lick", "cool-peas-lick",
"cool-rabbits-tickle", "cool-rabbits-tickle",
"cool-roses-trade", "cool-roses-trade",
@ -89,6 +90,7 @@
"empty-bulldogs-exercise", "empty-bulldogs-exercise",
"empty-crabs-think", "empty-crabs-think",
"empty-tools-share", "empty-tools-share",
"fair-bags-smoke",
"fair-crabs-check", "fair-crabs-check",
"fair-pianos-talk", "fair-pianos-talk",
"fair-spies-repeat", "fair-spies-repeat",
@ -111,6 +113,7 @@
"forty-suns-smile", "forty-suns-smile",
"four-flies-hammer", "four-flies-hammer",
"four-mice-hammer", "four-mice-hammer",
"fresh-dots-destroy",
"fresh-impalas-bow", "fresh-impalas-bow",
"fresh-weeks-trade", "fresh-weeks-trade",
"friendly-candles-relate", "friendly-candles-relate",

@ -1,5 +1,15 @@
# svelte # svelte
## 5.0.0-next.101
### Patch Changes
- fix missing classes after dynamic expressions in class attribute ([#11134](https://github.com/sveltejs/svelte/pull/11134))
- feat: simplify HMR implementation ([#11132](https://github.com/sveltejs/svelte/pull/11132))
- fix: add validation around disallowed sequence expressions to element attributes ([#11149](https://github.com/sveltejs/svelte/pull/11149))
## 5.0.0-next.100 ## 5.0.0-next.100
### 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.100", "version": "5.0.0-next.101",
"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.100'; export const VERSION = '5.0.0-next.101';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save