Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages (next) #8772

Merged
merged 1 commit into from
Jun 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,16 @@
},
"changesets": [
"beige-boxes-rhyme",
"eighty-tigers-rhyme",
"fair-geese-repeat",
"gentle-pumas-chew",
"green-sheep-learn",
"mighty-suns-occur",
"odd-wasps-smoke",
"silly-ladybugs-marry",
"smart-kangaroos-tell",
"stale-cougars-wink",
"tame-peaches-destroy"
"tame-peaches-destroy",
"yellow-squids-explain"
]
}
16 changes: 15 additions & 1 deletion packages/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# svelte

## 4.0.0-next.3

### Patch Changes

- feat: smaller minified output for destructor chunks ([#8763](https://github.com/sveltejs/svelte/pull/8763))

- breaking: use `CustomEvent` constructor instead of deprecated `createEvent` method ([#8775](https://github.com/sveltejs/svelte/pull/8775))

- fix: account for preprocessor source maps when calculating meta info ([#8778](https://github.com/sveltejs/svelte/pull/8778))

- chore: deindent cjs output for compiler ([#8785](https://github.com/sveltejs/svelte/pull/8785))

- feat: add version info to `window`. You can opt out by setting `discloseVersion` to `false` in the compiler options ([#8761](https://github.com/sveltejs/svelte/pull/8761))

## 4.0.0-next.2

### Patch Changes
Expand Down Expand Up @@ -69,7 +83,7 @@

## 3.59.2

* Fix escaping `<textarea bind:value={...}>` values in SSR
- Fix escaping `<textarea bind:value={...}>` values in SSR

## 3.59.1

Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svelte",
"version": "4.0.0-next.2",
"version": "4.0.0-next.3",
"description": "Cybernetically enhanced web apps",
"type": "module",
"module": "src/runtime/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/src/shared/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string}
*/
export const VERSION = '4.0.0-next.2';
export const VERSION = '4.0.0-next.3';
export const PUBLIC_VERSION = '4';