Version Packages (next) (#10621)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10624/head svelte@5.0.0-next.67
github-actions[bot] 2 years ago committed by GitHub
parent f658ca0d54
commit 1822396a55
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -141,6 +141,7 @@
"light-days-clean", "light-days-clean",
"light-humans-hang", "light-humans-hang",
"light-pens-watch", "light-pens-watch",
"little-pans-jog",
"long-buckets-lay", "long-buckets-lay",
"long-crews-return", "long-crews-return",
"long-lobsters-mate", "long-lobsters-mate",
@ -163,6 +164,7 @@
"neat-dingos-clap", "neat-dingos-clap",
"nervous-spoons-relax", "nervous-spoons-relax",
"new-boats-wait", "new-boats-wait",
"new-rabbits-flow",
"ninety-dingos-walk", "ninety-dingos-walk",
"odd-buckets-lie", "odd-buckets-lie",
"odd-needles-joke", "odd-needles-joke",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.67
### Patch Changes
- fix: improve event delegation with shadowed bindings ([#10620](https://github.com/sveltejs/svelte/pull/10620))
- feat: add reactive Date object to svelte/reactivity ([#10622](https://github.com/sveltejs/svelte/pull/10622))
## 5.0.0-next.66 ## 5.0.0-next.66
### 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.66", "version": "5.0.0-next.67",
"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.66'; export const VERSION = '5.0.0-next.67';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save