From 848d59a8ebf4f9bbff3f8ba9a86718f6ecdd3b42 Mon Sep 17 00:00:00 2001 From: neverland Date: Fri, 26 Jul 2024 13:13:30 +0800 Subject: [PATCH] release: 1.0.0-beta.0 (#7316) * release: 1.0.0-beta.0 * fix: snapshot --- crates/node_binding/package.json | 2 +- npm/darwin-arm64/package.json | 2 +- npm/darwin-x64/package.json | 2 +- npm/linux-x64-gnu/package.json | 2 +- npm/win32-x64-msvc/package.json | 2 +- package.json | 2 +- packages/create-rspack/package.json | 2 +- packages/rspack-cli/package.json | 2 +- packages/rspack-dev-server/package.json | 2 +- packages/rspack-lite-tapable/package.json | 2 +- packages/rspack-plugin-preact-refresh/package.json | 2 +- packages/rspack-plugin-react-refresh/package.json | 2 +- packages/rspack-test-tools/package.json | 2 +- .../rspack-test-tools/tests/statsAPICases/bundler-info.js | 8 ++++---- packages/rspack/package.json | 2 +- tests/plugin-test/copy-plugin/build/main.js | 2 +- 16 files changed, 19 insertions(+), 19 deletions(-) diff --git a/crates/node_binding/package.json b/crates/node_binding/package.json index aea27581b75..15638c995b2 100644 --- a/crates/node_binding/package.json +++ b/crates/node_binding/package.json @@ -1,6 +1,6 @@ { "name": "@rspack/binding", - "version": "1.0.0-alpha.5", + "version": "1.0.0-beta.0", "license": "MIT", "description": "Node binding for rspack", "main": "binding.js", diff --git a/npm/darwin-arm64/package.json b/npm/darwin-arm64/package.json index 969663a7884..33929dbd9dd 100644 --- a/npm/darwin-arm64/package.json +++ b/npm/darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@rspack/binding-darwin-arm64", - "version": "1.0.0-alpha.5", + "version": "1.0.0-beta.0", "license": "MIT", "description": "Node binding for rspack", "main": "rspack.darwin-arm64.node", diff --git a/npm/darwin-x64/package.json b/npm/darwin-x64/package.json index e417b3b88e6..93845548db8 100644 --- a/npm/darwin-x64/package.json +++ b/npm/darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "@rspack/binding-darwin-x64", - "version": "1.0.0-alpha.5", + "version": "1.0.0-beta.0", "license": "MIT", "description": "Node binding for rspack", "main": "rspack.darwin-x64.node", diff --git a/npm/linux-x64-gnu/package.json b/npm/linux-x64-gnu/package.json index 205116435f6..86b058a25b4 100644 --- a/npm/linux-x64-gnu/package.json +++ b/npm/linux-x64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@rspack/binding-linux-x64-gnu", - "version": "1.0.0-alpha.5", + "version": "1.0.0-beta.0", "license": "MIT", "description": "Node binding for rspack", "main": "rspack.linux-x64-gnu.node", diff --git a/npm/win32-x64-msvc/package.json b/npm/win32-x64-msvc/package.json index 87118491c7f..821e422bebd 100644 --- a/npm/win32-x64-msvc/package.json +++ b/npm/win32-x64-msvc/package.json @@ -1,6 +1,6 @@ { "name": "@rspack/binding-win32-x64-msvc", - "version": "1.0.0-alpha.5", + "version": "1.0.0-beta.0", "license": "MIT", "description": "Node binding for rspack", "main": "rspack.win32-x64-msvc.node", diff --git a/package.json b/package.json index 5b8750a9aa1..f1a1f78ba7f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "monorepo", - "version": "1.0.0-alpha.5", + "version": "1.0.0-beta.0", "license": "MIT", "description": "The fast Rust-based web bundler with webpack-compatible API", "private": true, diff --git a/packages/create-rspack/package.json b/packages/create-rspack/package.json index 22d77b88d16..ac47bdb2560 100644 --- a/packages/create-rspack/package.json +++ b/packages/create-rspack/package.json @@ -1,6 +1,6 @@ { "name": "create-rspack", - "version": "1.0.0-alpha.5", + "version": "1.0.0-beta.0", "license": "MIT", "main": "index.js", "bin": { diff --git a/packages/rspack-cli/package.json b/packages/rspack-cli/package.json index 0697e52e067..86d801717b2 100644 --- a/packages/rspack-cli/package.json +++ b/packages/rspack-cli/package.json @@ -1,6 +1,6 @@ { "name": "@rspack/cli", - "version": "1.0.0-alpha.5", + "version": "1.0.0-beta.0", "license": "MIT", "description": "CLI for rspack", "publishConfig": { diff --git a/packages/rspack-dev-server/package.json b/packages/rspack-dev-server/package.json index 44f6d0d9d9d..3073378c4d9 100644 --- a/packages/rspack-dev-server/package.json +++ b/packages/rspack-dev-server/package.json @@ -1,6 +1,6 @@ { "name": "@rspack/dev-server", - "version": "1.0.0-alpha.5", + "version": "1.0.0-beta.0", "license": "MIT", "description": "Development server for rspack", "main": "./dist/index.js", diff --git a/packages/rspack-lite-tapable/package.json b/packages/rspack-lite-tapable/package.json index 1be4c04b58f..d8faa324ed0 100644 --- a/packages/rspack-lite-tapable/package.json +++ b/packages/rspack-lite-tapable/package.json @@ -1,6 +1,6 @@ { "name": "@rspack/lite-tapable", - "version": "1.0.0-alpha.5", + "version": "1.0.0-beta.0", "license": "MIT", "description": "Lite weight tapable for Rspack", "main": "./dist/index.js", diff --git a/packages/rspack-plugin-preact-refresh/package.json b/packages/rspack-plugin-preact-refresh/package.json index 45df7df10cc..d5544103534 100644 --- a/packages/rspack-plugin-preact-refresh/package.json +++ b/packages/rspack-plugin-preact-refresh/package.json @@ -1,6 +1,6 @@ { "name": "@rspack/plugin-preact-refresh", - "version": "1.0.0-alpha.5", + "version": "1.0.0-beta.0", "license": "MIT", "description": "Preact refresh plugin for rspack", "main": "dist/index.js", diff --git a/packages/rspack-plugin-react-refresh/package.json b/packages/rspack-plugin-react-refresh/package.json index 7ca1a1957a2..028b663eb00 100644 --- a/packages/rspack-plugin-react-refresh/package.json +++ b/packages/rspack-plugin-react-refresh/package.json @@ -1,6 +1,6 @@ { "name": "@rspack/plugin-react-refresh", - "version": "1.0.0-alpha.5", + "version": "1.0.0-beta.0", "license": "MIT", "description": "React refresh plugin for rspack", "main": "dist/index.js", diff --git a/packages/rspack-test-tools/package.json b/packages/rspack-test-tools/package.json index 1b8bb318396..8b5185755cc 100644 --- a/packages/rspack-test-tools/package.json +++ b/packages/rspack-test-tools/package.json @@ -1,6 +1,6 @@ { "name": "@rspack/test-tools", - "version": "1.0.0-alpha.5", + "version": "1.0.0-beta.0", "license": "MIT", "description": "Test tools for rspack", "main": "dist/index.js", diff --git a/packages/rspack-test-tools/tests/statsAPICases/bundler-info.js b/packages/rspack-test-tools/tests/statsAPICases/bundler-info.js index 4b509786d06..b2b87e5a89d 100644 --- a/packages/rspack-test-tools/tests/statsAPICases/bundler-info.js +++ b/packages/rspack-test-tools/tests/statsAPICases/bundler-info.js @@ -56,9 +56,9 @@ module.exports = { "preOrderIndex": undefined, "providedExports": Array [], "reasons": Array [], - "size": 59, + "size": 58, "sizes": Object { - "runtime": 59, + "runtime": 58, }, "type": "module", "usedExports": null, @@ -96,9 +96,9 @@ module.exports = { "preOrderIndex": undefined, "providedExports": Array [], "reasons": Array [], - "size": 67, + "size": 66, "sizes": Object { - "runtime": 67, + "runtime": 66, }, "type": "module", "usedExports": null, diff --git a/packages/rspack/package.json b/packages/rspack/package.json index 878f6901938..85bc26e43c7 100644 --- a/packages/rspack/package.json +++ b/packages/rspack/package.json @@ -1,6 +1,6 @@ { "name": "@rspack/core", - "version": "1.0.0-alpha.5", + "version": "1.0.0-beta.0", "webpackVersion": "5.75.0", "license": "MIT", "description": "The fast Rust-based web bundler with webpack-compatible API", diff --git a/tests/plugin-test/copy-plugin/build/main.js b/tests/plugin-test/copy-plugin/build/main.js index d9d33b385cc..6bb222eddd8 100644 --- a/tests/plugin-test/copy-plugin/build/main.js +++ b/tests/plugin-test/copy-plugin/build/main.js @@ -1 +1 @@ -(()=>{"use strict";var r={},t={};function e(i){var o=t[i];if(void 0!==o)return o.exports;var n=t[i]={exports:{}};return r[i](n,n.exports,e),n.exports}e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(r){if("object"==typeof window)return window}}(),e.rv=function(){return"1.0.0-alpha.5"},(()=>{e.g.importScripts&&(r=e.g.location+"");var r,t=e.g.document;if(!r&&t&&(t.currentScript&&(r=t.currentScript.src),!r)){var i=t.getElementsByTagName("script");if(i.length){for(var o=i.length-1;o>-1&&(!r||!/^http(s?):/.test(r));)r=i[o--].src}}if(!r)throw Error("Automatic publicPath is not supported in this browser");r=r.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=r})(),e.ruid="bundler=rspack@1.0.0-alpha.5",e.p})(); \ No newline at end of file +(()=>{"use strict";var r={},t={};function e(i){var o=t[i];if(void 0!==o)return o.exports;var n=t[i]={exports:{}};return r[i](n,n.exports,e),n.exports}e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(r){if("object"==typeof window)return window}}(),e.rv=function(){return"1.0.0-beta.0"},(()=>{e.g.importScripts&&(r=e.g.location+"");var r,t=e.g.document;if(!r&&t&&(t.currentScript&&(r=t.currentScript.src),!r)){var i=t.getElementsByTagName("script");if(i.length){for(var o=i.length-1;o>-1&&(!r||!/^http(s?):/.test(r));)r=i[o--].src}}if(!r)throw Error("Automatic publicPath is not supported in this browser");r=r.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=r})(),e.ruid="bundler=rspack@1.0.0-beta.0",e.p})(); \ No newline at end of file