Version Packages (next) (#11850)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11855/head
github-actions[bot] 8 months ago committed by GitHub
parent c9c4b9d50b
commit aa91ed2c1c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -310,6 +310,7 @@
"nine-cooks-join", "nine-cooks-join",
"ninety-dingos-walk", "ninety-dingos-walk",
"ninety-dots-train", "ninety-dots-train",
"ninety-rockets-battle",
"odd-buckets-lie", "odd-buckets-lie",
"odd-needles-joke", "odd-needles-joke",
"odd-schools-wait", "odd-schools-wait",
@ -412,6 +413,7 @@
"shiny-baboons-play", "shiny-baboons-play",
"shiny-mayflies-clean", "shiny-mayflies-clean",
"shiny-melons-love", "shiny-melons-love",
"shiny-months-tease",
"shiny-rats-heal", "shiny-rats-heal",
"shiny-shrimps-march", "shiny-shrimps-march",
"short-buses-camp", "short-buses-camp",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.146
### Patch Changes
- fix: allow for more svelte-ignore to work ([#11833](https://github.com/sveltejs/svelte/pull/11833))
- fix: reevaluate namespace in slots ([#11849](https://github.com/sveltejs/svelte/pull/11849))
## 5.0.0-next.145 ## 5.0.0-next.145
### 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.145", "version": "5.0.0-next.146",
"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.145'; export const VERSION = '5.0.0-next.146';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save