Version Packages (next) (#12246)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12255/head svelte@5.0.0-next.169
github-actions[bot] 6 days ago committed by GitHub
parent cae5f1ed26
commit 6c214d6736
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -357,6 +357,7 @@
"new-brooms-grin", "new-brooms-grin",
"new-rabbits-flow", "new-rabbits-flow",
"nice-avocados-move", "nice-avocados-move",
"nice-jobs-breathe",
"nine-cooks-join", "nine-cooks-join",
"ninety-days-visit", "ninety-days-visit",
"ninety-dingos-walk", "ninety-dingos-walk",
@ -393,6 +394,7 @@
"plenty-starfishes-dress", "plenty-starfishes-dress",
"plenty-zoos-fix", "plenty-zoos-fix",
"polite-dolphins-care", "polite-dolphins-care",
"polite-peas-mate",
"polite-pumpkins-guess", "polite-pumpkins-guess",
"polite-ravens-study", "polite-ravens-study",
"polite-ways-serve", "polite-ways-serve",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.169
### Patch Changes
- breaking: rename `svelte/reactivity` helpers to include `Svelte` prefix ([#12248](https://github.com/sveltejs/svelte/pull/12248))
- fix: avoid duplicate signal dependencies ([#12245](https://github.com/sveltejs/svelte/pull/12245))
## 5.0.0-next.168 ## 5.0.0-next.168
### 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.168", "version": "5.0.0-next.169",
"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.168'; export const VERSION = '5.0.0-next.169';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save