Version Packages (next) (#11753)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11759/head svelte@5.0.0-next.141
github-actions[bot] 1 year ago committed by GitHub
parent 7dacf2c4d4
commit 3dfa343ea2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -157,6 +157,7 @@
"friendly-candles-relate",
"friendly-lies-camp",
"funny-ties-jump",
"funny-trees-cry",
"funny-wombats-argue",
"fuzzy-bags-camp",
"fuzzy-donuts-provide",
@ -184,6 +185,7 @@
"green-eggs-approve",
"green-fishes-lie",
"green-hounds-play",
"green-snails-tickle",
"green-tigers-judge",
"grumpy-avocados-fetch",
"grumpy-jars-sparkle",
@ -406,10 +408,12 @@
"silent-apes-report",
"silent-hats-stare",
"silent-rabbits-join",
"silly-ducks-mix",
"silly-laws-happen",
"silly-lies-film",
"silly-ways-wash",
"silver-points-approve",
"six-bears-trade",
"six-boats-shave",
"sixty-items-crash",
"sixty-numbers-hope",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.141
### Patch Changes
- fix: throw on invalid attribute expressions ([#11736](https://github.com/sveltejs/svelte/pull/11736))
- fix: use svg methods for updating svg attributes too ([#11755](https://github.com/sveltejs/svelte/pull/11755))
- fix: don't warn on link without href if aria-disabled ([#11737](https://github.com/sveltejs/svelte/pull/11737))
- fix: don't use console.trace inside dev warnings ([#11744](https://github.com/sveltejs/svelte/pull/11744))
## 5.0.0-next.140
### Patch Changes

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

Loading…
Cancel
Save