Version Packages (next) (#11315)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11330/head svelte@5.0.0-next.115
github-actions[bot] 4 months ago committed by GitHub
parent 6eb70f88bb
commit 4be593472d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -215,6 +215,7 @@
"lovely-items-turn", "lovely-items-turn",
"lovely-rules-eat", "lovely-rules-eat",
"lucky-colts-remember", "lucky-colts-remember",
"lucky-geckos-swim",
"lucky-schools-hang", "lucky-schools-hang",
"lucky-toes-begin", "lucky-toes-begin",
"many-rockets-give", "many-rockets-give",
@ -432,6 +433,7 @@
"tidy-chefs-taste", "tidy-chefs-taste",
"tidy-starfishes-allow", "tidy-starfishes-allow",
"tiny-kings-whisper", "tiny-kings-whisper",
"tiny-meals-deliver",
"tough-radios-punch", "tough-radios-punch",
"twelve-dragons-join", "twelve-dragons-join",
"twelve-onions-juggle", "twelve-onions-juggle",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.115
### Patch Changes
- fix: remove `bind_prop` in runes mode ([#11321](https://github.com/sveltejs/svelte/pull/11321))
- fix: mark `accessors` and `immutable` as deprecated ([#11277](https://github.com/sveltejs/svelte/pull/11277))
## 5.0.0-next.114 ## 5.0.0-next.114
### 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.114", "version": "5.0.0-next.115",
"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.114'; export const VERSION = '5.0.0-next.115';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save