diff --git a/.changes/add-process-import-vite-templates.md.md b/.changes/add-process-import-vite-templates.md.md deleted file mode 100644 index ea0a42ad09..0000000000 --- a/.changes/add-process-import-vite-templates.md.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"create-tauri-app": patch -"create-tauri-app-js": patch ---- - -added `import process from "node:process"` to Vite-based templates diff --git a/.changes/blazor-need-tauri-cli.md b/.changes/blazor-need-tauri-cli.md deleted file mode 100644 index 0a1b010aef..0000000000 --- a/.changes/blazor-need-tauri-cli.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"create-tauri-app": patch -"create-tauri-app-js": patch ---- - -Fix missing tauri-cli not printed for Blazor template diff --git a/.changes/remove-unnecessary-async-from-vite-configs.md b/.changes/remove-unnecessary-async-from-vite-configs.md deleted file mode 100644 index e5a5e2a493..0000000000 --- a/.changes/remove-unnecessary-async-from-vite-configs.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"create-tauri-app": patch -"create-tauri-app-js": patch ---- - -Remove unnecessary `async` keyword from `defineConfig` in Vite-based templates diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e561819a9..0865118441 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[4.7.1] + +- [`87c455b`](https://www.github.com/tauri-apps/create-tauri-app/commit/87c455bb2003586682c287157cd831e9050df70b) ([#960](https://www.github.com/tauri-apps/create-tauri-app/pull/960) by [@katayama8000](https://www.github.com/tauri-apps/create-tauri-app/../../katayama8000)) added `import process from "node:process"` to Vite-based templates +- [`3083ea8`](https://www.github.com/tauri-apps/create-tauri-app/commit/3083ea8191e9c4c98dd014fa411fb776ea7a28ae) ([#950](https://www.github.com/tauri-apps/create-tauri-app/pull/950) by [@Legend-Master](https://www.github.com/tauri-apps/create-tauri-app/../../Legend-Master)) Fix missing tauri-cli not printed for Blazor template +- [`0b66048`](https://www.github.com/tauri-apps/create-tauri-app/commit/0b66048820d7379d1776c8a95123ec82ba1eb204) ([#959](https://www.github.com/tauri-apps/create-tauri-app/pull/959) by [@katayama8000](https://www.github.com/tauri-apps/create-tauri-app/../../katayama8000)) Remove unnecessary `async` keyword from `defineConfig` in Vite-based templates + ## \[4.7.0] - [`8d15234`](https://www.github.com/tauri-apps/create-tauri-app/commit/8d15234e7b473afe68c8601e88f11d1646157404) ([#929](https://www.github.com/tauri-apps/create-tauri-app/pull/929) by [@Legend-Master](https://www.github.com/tauri-apps/create-tauri-app/../../Legend-Master)) Fix the `.ico` icon being blurry because of it lacks some sizes diff --git a/Cargo.lock b/Cargo.lock index a12fe17b20..65ddea78f2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -118,7 +118,7 @@ dependencies = [ [[package]] name = "create-tauri-app" -version = "4.7.0" +version = "4.7.1" dependencies = [ "anyhow", "ctrlc", diff --git a/Cargo.toml b/Cargo.toml index a50498e960..3e2c5aaf81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "create-tauri-app" description = "Rapidly scaffold out a new tauri app project." authors = ["Tauri Programme within The Commons Conservancy"] -version = "4.7.0" +version = "4.7.1" edition = "2021" license = "Apache-2.0 OR MIT" readme = "README.md" diff --git a/create-tauri-app.ps1 b/create-tauri-app.ps1 index a2fd4b274e..01c820940c 100644 --- a/create-tauri-app.ps1 +++ b/create-tauri-app.ps1 @@ -9,7 +9,7 @@ $bitness = if ([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchi } else { "i686" } -$__TAG_NAME__ = "create-tauri-app-v4.7.0" +$__TAG_NAME__ = "create-tauri-app-v4.7.1" # $url="https://github.com/tauri-apps/create-tauri-app/releases/download/$__TAG_NAME__/create-tauri-app-$bitness-pc-windows-msvc.exe" $url="https://create.tauri.app/download/bin?tag=$__TAG_NAME__&arch=$bitness-pc-windows-msvc&ext=.exe" $outFile = "$Env:TEMP\create-tauri-app.exe" diff --git a/create-tauri-app.sh b/create-tauri-app.sh index 87674e6108..a847d91243 100644 --- a/create-tauri-app.sh +++ b/create-tauri-app.sh @@ -44,7 +44,7 @@ main() { ;; esac - local __TAG_NAME__="create-tauri-app-v4.7.0" + local __TAG_NAME__="create-tauri-app-v4.7.1" # local _url="https://github.com/tauri-apps/create-tauri-app/releases/download/${__TAG_NAME__}/create-tauri-app-${_arch}${_ext}" local _url="https://create.tauri.app/download/bin?tag=${__TAG_NAME__}&arch=${_arch}&ext=${_ext}" diff --git a/node/CHANGELOG.md b/node/CHANGELOG.md index 246ce7b118..5c002e042d 100644 --- a/node/CHANGELOG.md +++ b/node/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## \[4.7.1] + +- [`87c455b`](https://www.github.com/tauri-apps/create-tauri-app/commit/87c455bb2003586682c287157cd831e9050df70b) ([#960](https://www.github.com/tauri-apps/create-tauri-app/pull/960) by [@katayama8000](https://www.github.com/tauri-apps/create-tauri-app/../../katayama8000)) added `import process from "node:process"` to Vite-based templates +- [`3083ea8`](https://www.github.com/tauri-apps/create-tauri-app/commit/3083ea8191e9c4c98dd014fa411fb776ea7a28ae) ([#950](https://www.github.com/tauri-apps/create-tauri-app/pull/950) by [@Legend-Master](https://www.github.com/tauri-apps/create-tauri-app/../../Legend-Master)) Fix missing tauri-cli not printed for Blazor template +- [`0b66048`](https://www.github.com/tauri-apps/create-tauri-app/commit/0b66048820d7379d1776c8a95123ec82ba1eb204) ([#959](https://www.github.com/tauri-apps/create-tauri-app/pull/959) by [@katayama8000](https://www.github.com/tauri-apps/create-tauri-app/../../katayama8000)) Remove unnecessary `async` keyword from `defineConfig` in Vite-based templates + +### Dependencies + +- Upgraded to `create-tauri-app@4.7.1` + ## \[4.7.0] - [`8d15234`](https://www.github.com/tauri-apps/create-tauri-app/commit/8d15234e7b473afe68c8601e88f11d1646157404) ([#929](https://www.github.com/tauri-apps/create-tauri-app/pull/929) by [@Legend-Master](https://www.github.com/tauri-apps/create-tauri-app/../../Legend-Master)) Fix the `.ico` icon being blurry because of it lacks some sizes diff --git a/node/package.json b/node/package.json index baf917cabe..a4a9ae6fe3 100644 --- a/node/package.json +++ b/node/package.json @@ -1,6 +1,6 @@ { "name": "create-tauri-app", - "version": "4.7.0", + "version": "4.7.1", "description": "Rapidly scaffold out a new tauri app project.", "funding": { "type": "opencollective", diff --git a/worker/scripts/create-tauri-app.ps1 b/worker/scripts/create-tauri-app.ps1 index a2fd4b274e..01c820940c 100644 --- a/worker/scripts/create-tauri-app.ps1 +++ b/worker/scripts/create-tauri-app.ps1 @@ -9,7 +9,7 @@ $bitness = if ([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchi } else { "i686" } -$__TAG_NAME__ = "create-tauri-app-v4.7.0" +$__TAG_NAME__ = "create-tauri-app-v4.7.1" # $url="https://github.com/tauri-apps/create-tauri-app/releases/download/$__TAG_NAME__/create-tauri-app-$bitness-pc-windows-msvc.exe" $url="https://create.tauri.app/download/bin?tag=$__TAG_NAME__&arch=$bitness-pc-windows-msvc&ext=.exe" $outFile = "$Env:TEMP\create-tauri-app.exe" diff --git a/worker/scripts/create-tauri-app.sh b/worker/scripts/create-tauri-app.sh index 87674e6108..a847d91243 100644 --- a/worker/scripts/create-tauri-app.sh +++ b/worker/scripts/create-tauri-app.sh @@ -44,7 +44,7 @@ main() { ;; esac - local __TAG_NAME__="create-tauri-app-v4.7.0" + local __TAG_NAME__="create-tauri-app-v4.7.1" # local _url="https://github.com/tauri-apps/create-tauri-app/releases/download/${__TAG_NAME__}/create-tauri-app-${_arch}${_ext}" local _url="https://create.tauri.app/download/bin?tag=${__TAG_NAME__}&arch=${_arch}&ext=${_ext}"