Version Packages (next) (#11645)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11652/head svelte@5.0.0-next.135
github-actions[bot] 2 months ago committed by GitHub
parent dc9b0d08c1
commit 019b26b775
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -80,6 +80,7 @@
"curvy-flies-exercise",
"curvy-ties-shout",
"cyan-colts-raise",
"cyan-ducks-teach",
"cyan-flowers-destroy",
"cyan-spies-grin",
"cyan-squids-drive",
@ -213,11 +214,13 @@
"khaki-cooks-develop",
"khaki-ligers-sing",
"khaki-mails-draw",
"khaki-mails-scream",
"khaki-monkeys-cry",
"khaki-moose-arrive",
"khaki-tomatoes-rule",
"kind-baboons-approve",
"kind-deers-lay",
"kind-doors-grin",
"kind-dots-sort",
"kind-eagles-join",
"kind-rings-flash",
@ -321,6 +324,7 @@
"poor-hats-design",
"poor-seahorses-flash",
"popular-apes-bathe",
"popular-games-hug",
"popular-ligers-perform",
"popular-mangos-rest",
"popular-walls-hunt",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.135
### Patch Changes
- fix: make messages more consistent ([#11643](https://github.com/sveltejs/svelte/pull/11643))
- feat: introduce `rootDir` compiler option, make `filename` relative to it ([#11627](https://github.com/sveltejs/svelte/pull/11627))
- fix: rename `__svelte_meta.filename` to `__svelte_meta.file` to align with svelte 4 ([#11627](https://github.com/sveltejs/svelte/pull/11627))
- fix: avoid state_referenced_locally warning within type annotations ([#11638](https://github.com/sveltejs/svelte/pull/11638))
## 5.0.0-next.134
### Patch Changes

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

Loading…
Cancel
Save