Skip to content

Commit

Permalink
Version Packages (next) (sveltejs#8772)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Jun 22, 2023
1 parent ef1b98f commit 82cc483
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
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';

0 comments on commit 82cc483

Please sign in to comment.