diff --git a/.changes/macos-icon.md b/.changes/macos-icon.md deleted file mode 100644 index 95c4969ac5..0000000000 --- a/.changes/macos-icon.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"create-tauri-app": patch ---- - -Add an optimized macOS icon so that building from a template doesn't cause errors. \ No newline at end of file diff --git a/.changes/solid-className-to-class.md b/.changes/solid-className-to-class.md deleted file mode 100644 index 304a718eb7..0000000000 --- a/.changes/solid-className-to-class.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"create-tauri-app": "patch" ---- - -Fix solid template IDE type errors by changing `className` to `class` \ No newline at end of file diff --git a/.changes/yew-template-before-dev-command.md b/.changes/yew-template-before-dev-command.md deleted file mode 100644 index 832509776b..0000000000 --- a/.changes/yew-template-before-dev-command.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"create-tauri-app": patch ---- - -Fixed yew template "beforeDevCommand" from "trunk build" to "trunk serve". Before when you called "tauri dev" infinite loop will occur waiting for dev server to become available at "http://localhost:1420". - diff --git a/.changes/yew-template-with-global.md b/.changes/yew-template-with-global.md deleted file mode 100644 index 32273daafb..0000000000 --- a/.changes/yew-template-with-global.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"create-tauri-app": patch ---- - -Changed "withGlobalTauri" for yew template from "false" to "true" so example frontend can actually "invoke" backend methods \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 8d7cae815a..1f4787d711 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -84,7 +84,7 @@ dependencies = [ [[package]] name = "create-tauri-app" -version = "2.1.0" +version = "2.1.1" dependencies = [ "anyhow", "dialoguer", diff --git a/create-tauri-app.ps1 b/create-tauri-app.ps1 index e16426b5a0..862239e623 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.1.0" +$__TAG_NAME__ = "create-tauri-app-v2.1.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 95ebc701eb..c822a8f9f4 100644 --- a/create-tauri-app.sh +++ b/create-tauri-app.sh @@ -44,7 +44,7 @@ main() { ;; esac - local __TAG_NAME__="create-tauri-app-v2.1.0" + local __TAG_NAME__="create-tauri-app-v2.1.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/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 01c840977d..5bceb8754d 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## \[2.1.1] + +- Add an optimized macOS icon so that building from a template doesn't cause errors. + - [a28848c](https://www.github.com/tauri-apps/create-tauri-app/commit/a28848c009c111da367e19be3bc93669f9b8bf6b) fix: add missing `icon.icns` file, closes [#143](https://www.github.com/tauri-apps/create-tauri-app/pull/143) ([#152](https://www.github.com/tauri-apps/create-tauri-app/pull/152)) on 2022-08-30 +- Fix solid template IDE type errors by changing `className` to `class` + - [ea9a90c](https://www.github.com/tauri-apps/create-tauri-app/commit/ea9a90c30385ac3e3ea081ac43c1479e563b3bac) fix(cli/fragments): change solid's `className` to `class`, closes [#144](https://www.github.com/tauri-apps/create-tauri-app/pull/144) ([#150](https://www.github.com/tauri-apps/create-tauri-app/pull/150)) on 2022-08-30 +- Fixed yew template "beforeDevCommand" from "trunk build" to "trunk serve". Before when you called "tauri dev" infinite loop will occur waiting for dev server to become available at "http://localhost:1420". + - [675b091](https://www.github.com/tauri-apps/create-tauri-app/commit/675b091f3033dec0413d9d43329be8c46dd31f9c) fix(cli/fragments): fix yew fragment beforeDevCommand and withGlobalTauri ([#147](https://www.github.com/tauri-apps/create-tauri-app/pull/147)) on 2022-08-30 +- Changed "withGlobalTauri" for yew template from "false" to "true" so example frontend can actually "invoke" backend methods + - [675b091](https://www.github.com/tauri-apps/create-tauri-app/commit/675b091f3033dec0413d9d43329be8c46dd31f9c) fix(cli/fragments): fix yew fragment beforeDevCommand and withGlobalTauri ([#147](https://www.github.com/tauri-apps/create-tauri-app/pull/147)) on 2022-08-30 + ## \[2.1.0] - Add `next` and `next-ts` templates diff --git a/packages/cli/Cargo.toml b/packages/cli/Cargo.toml index b31bb23aa4..5e6bedd0df 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.1.0" +version = "2.1.1" 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 cc818783ff..6905788f2c 100644 --- a/packages/cli/node/CHANGELOG.md +++ b/packages/cli/node/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## \[2.1.1] + +- Add an optimized macOS icon so that building from a template doesn't cause errors. + - Bumped due to a bump in create-tauri-app. + - [a28848c](https://www.github.com/tauri-apps/create-tauri-app/commit/a28848c009c111da367e19be3bc93669f9b8bf6b) fix: add missing `icon.icns` file, closes [#143](https://www.github.com/tauri-apps/create-tauri-app/pull/143) ([#152](https://www.github.com/tauri-apps/create-tauri-app/pull/152)) on 2022-08-30 +- Fix solid template IDE type errors by changing `className` to `class` + - Bumped due to a bump in create-tauri-app. + - [ea9a90c](https://www.github.com/tauri-apps/create-tauri-app/commit/ea9a90c30385ac3e3ea081ac43c1479e563b3bac) fix(cli/fragments): change solid's `className` to `class`, closes [#144](https://www.github.com/tauri-apps/create-tauri-app/pull/144) ([#150](https://www.github.com/tauri-apps/create-tauri-app/pull/150)) on 2022-08-30 +- Fixed yew template "beforeDevCommand" from "trunk build" to "trunk serve". Before when you called "tauri dev" infinite loop will occur waiting for dev server to become available at "http://localhost:1420". + - Bumped due to a bump in create-tauri-app. + - [675b091](https://www.github.com/tauri-apps/create-tauri-app/commit/675b091f3033dec0413d9d43329be8c46dd31f9c) fix(cli/fragments): fix yew fragment beforeDevCommand and withGlobalTauri ([#147](https://www.github.com/tauri-apps/create-tauri-app/pull/147)) on 2022-08-30 +- Changed "withGlobalTauri" for yew template from "false" to "true" so example frontend can actually "invoke" backend methods + - Bumped due to a bump in create-tauri-app. + - [675b091](https://www.github.com/tauri-apps/create-tauri-app/commit/675b091f3033dec0413d9d43329be8c46dd31f9c) fix(cli/fragments): fix yew fragment beforeDevCommand and withGlobalTauri ([#147](https://www.github.com/tauri-apps/create-tauri-app/pull/147)) on 2022-08-30 + ## \[2.1.0] - Add `next` and `next-ts` templates diff --git a/packages/cli/node/package.json b/packages/cli/node/package.json index 56c9834dda..e228a25ac4 100644 --- a/packages/cli/node/package.json +++ b/packages/cli/node/package.json @@ -1,6 +1,6 @@ { "name": "create-tauri-app", - "version": "2.1.0", + "version": "2.1.1", "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 e16426b5a0..862239e623 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.1.0" +$__TAG_NAME__ = "create-tauri-app-v2.1.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/packages/worker/scripts/create-tauri-app.sh b/packages/worker/scripts/create-tauri-app.sh index 95ebc701eb..c822a8f9f4 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.1.0" + local __TAG_NAME__="create-tauri-app-v2.1.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}"