diff --git a/.changes/cli-node.md b/.changes/cli-node.md deleted file mode 100644 index 0b9eae6838..0000000000 --- a/.changes/cli-node.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"create-tauri-app-js": "patch" ---- - -Fix crash when nodejs binary has the version in its name, for example `node18` \ No newline at end of file diff --git a/.changes/svelte-kit-templates.md b/.changes/svelte-kit-templates.md deleted file mode 100644 index 1a4caad8d9..0000000000 --- a/.changes/svelte-kit-templates.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"create-tauri-app": minor -"create-tauri-app-js": minor ---- - -Add `svelte-kit` and `svelte-kit-ts` template. diff --git a/.changes/vanilla-ts-import.md b/.changes/vanilla-ts-import.md deleted file mode 100644 index c953bed078..0000000000 --- a/.changes/vanilla-ts-import.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"create-tauri-app": "patch" -"create-tauri-app-js": "patch" ---- - -Use `import` in vanilla-ts instead of the global Tauri object. diff --git a/Cargo.lock b/Cargo.lock index f524d308c5..d337a65bae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -84,7 +84,7 @@ dependencies = [ [[package]] name = "create-tauri-app" -version = "2.5.0" +version = "2.6.0" dependencies = [ "anyhow", "dialoguer", diff --git a/create-tauri-app.ps1 b/create-tauri-app.ps1 index 30c4a4cc8f..c5410828fe 100644 --- a/create-tauri-app.ps1 +++ b/create-tauri-app.ps1 @@ -3,7 +3,7 @@ # SPDX-License-Identifier: MIT $bitness = if ([Environment]::Is64BitOperatingSystem) { "x86_64" } else { "i686" } -$__TAG_NAME__ = "create-tauri-app-v2.5.0" +$__TAG_NAME__ = "create-tauri-app-v2.6.0" # $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 8fa7b96977..aafd0a7496 100644 --- a/create-tauri-app.sh +++ b/create-tauri-app.sh @@ -44,7 +44,7 @@ main() { ;; esac - local __TAG_NAME__="create-tauri-app-v2.5.0" + local __TAG_NAME__="create-tauri-app-v2.6.0" # 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/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 4837e9d904..dfa79c9ef8 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## \[2.6.0] + +- Add `svelte-kit` and `svelte-kit-ts` template. + - [0b09cc1](https://www.github.com/tauri-apps/create-tauri-app/commit/0b09cc167784b4400c2078e61f1b7bbe45ba54a3) feat: add `Sveltekit` templates ([#200](https://www.github.com/tauri-apps/create-tauri-app/pull/200)) on 2022-10-04 +- Use `import` in vanilla-ts instead of the global Tauri object. + - [dcca18c](https://www.github.com/tauri-apps/create-tauri-app/commit/dcca18c2de3bd14304bee849015c33880304d647) fix: Use `import` in vanilla-ts fragment. ([#198](https://www.github.com/tauri-apps/create-tauri-app/pull/198)) on 2022-10-01 + - [ee4469b](https://www.github.com/tauri-apps/create-tauri-app/commit/ee4469b97a05ab66ccbb28807eb2e53f333b5d48) chore: fix changefile on 2022-10-04 + ## \[2.5.0] - Add `clojurescript` template. diff --git a/packages/cli/Cargo.toml b/packages/cli/Cargo.toml index 346425def0..9899e586d6 100644 --- a/packages/cli/Cargo.toml +++ b/packages/cli/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 = "2.5.0" +version = "2.6.0" edition = "2021" license = "Apache-2.0 OR MIT" readme = "README.md" diff --git a/packages/cli/node/CHANGELOG.md b/packages/cli/node/CHANGELOG.md index 566689c22e..6075b98981 100644 --- a/packages/cli/node/CHANGELOG.md +++ b/packages/cli/node/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## \[2.6.0] + +- Fix crash when nodejs binary has the version in its name, for example `node18` + - [09c0ed6](https://www.github.com/tauri-apps/create-tauri-app/commit/09c0ed6bfba893fbfb1ac304720b72716f7137d1) fix(cli/node): fix invoking the node cli from a shim, closes [#193](https://www.github.com/tauri-apps/create-tauri-app/pull/193) ([#207](https://www.github.com/tauri-apps/create-tauri-app/pull/207)) on 2022-10-04 +- Add `svelte-kit` and `svelte-kit-ts` template. + - [0b09cc1](https://www.github.com/tauri-apps/create-tauri-app/commit/0b09cc167784b4400c2078e61f1b7bbe45ba54a3) feat: add `Sveltekit` templates ([#200](https://www.github.com/tauri-apps/create-tauri-app/pull/200)) on 2022-10-04 +- Use `import` in vanilla-ts instead of the global Tauri object. + - [dcca18c](https://www.github.com/tauri-apps/create-tauri-app/commit/dcca18c2de3bd14304bee849015c33880304d647) fix: Use `import` in vanilla-ts fragment. ([#198](https://www.github.com/tauri-apps/create-tauri-app/pull/198)) on 2022-10-01 + - [ee4469b](https://www.github.com/tauri-apps/create-tauri-app/commit/ee4469b97a05ab66ccbb28807eb2e53f333b5d48) chore: fix changefile on 2022-10-04 + ## \[2.5.0] - Add `clojurescript` template. diff --git a/packages/cli/node/package.json b/packages/cli/node/package.json index 7f790b7e6d..491871fa09 100644 --- a/packages/cli/node/package.json +++ b/packages/cli/node/package.json @@ -1,6 +1,6 @@ { "name": "create-tauri-app", - "version": "2.5.0", + "version": "2.6.0", "description": "Rapidly scaffold out a new tauri app project.", "funding": { "type": "opencollective", diff --git a/packages/worker/scripts/create-tauri-app.ps1 b/packages/worker/scripts/create-tauri-app.ps1 index 30c4a4cc8f..c5410828fe 100644 --- a/packages/worker/scripts/create-tauri-app.ps1 +++ b/packages/worker/scripts/create-tauri-app.ps1 @@ -3,7 +3,7 @@ # SPDX-License-Identifier: MIT $bitness = if ([Environment]::Is64BitOperatingSystem) { "x86_64" } else { "i686" } -$__TAG_NAME__ = "create-tauri-app-v2.5.0" +$__TAG_NAME__ = "create-tauri-app-v2.6.0" # $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/packages/worker/scripts/create-tauri-app.sh b/packages/worker/scripts/create-tauri-app.sh index 8fa7b96977..aafd0a7496 100644 --- a/packages/worker/scripts/create-tauri-app.sh +++ b/packages/worker/scripts/create-tauri-app.sh @@ -44,7 +44,7 @@ main() { ;; esac - local __TAG_NAME__="create-tauri-app-v2.5.0" + local __TAG_NAME__="create-tauri-app-v2.6.0" # 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}"