From 9b774f6dbe486a869e47d7bc228c2165f28ace23 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 2 Aug 2024 16:50:14 -0300 Subject: [PATCH] apply version updates (#747) Co-authored-by: lucasfernog --- .changes/rc.md | 6 ------ .changes/remove-mobile-arg.md | 6 ------ CHANGELOG.md | 5 +++++ Cargo.lock | 2 +- Cargo.toml | 2 +- create-tauri-app.ps1 | 2 +- create-tauri-app.sh | 2 +- node/CHANGELOG.md | 9 +++++++++ node/package.json | 2 +- worker/scripts/create-tauri-app.ps1 | 2 +- worker/scripts/create-tauri-app.sh | 2 +- 11 files changed, 21 insertions(+), 19 deletions(-) delete mode 100644 .changes/rc.md delete mode 100644 .changes/remove-mobile-arg.md diff --git a/.changes/rc.md b/.changes/rc.md deleted file mode 100644 index 598d3c5a..00000000 --- a/.changes/rc.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"create-tauri-app": minor -"create-tauri-app-js": minor ---- - -Updated the templates to Tauri v2 RC. diff --git a/.changes/remove-mobile-arg.md b/.changes/remove-mobile-arg.md deleted file mode 100644 index 9b9e377f..00000000 --- a/.changes/remove-mobile-arg.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"create-tauri-app": minor -"create-tauri-app-js": minor ---- - -Removed the `--mobile` and `--no-mobile` arguments. When using `--rc` we will always generate a template that supports both desktop and mobile using Tauri v2. diff --git a/CHANGELOG.md b/CHANGELOG.md index e10f730e..21ba4521 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[4.1.0] + +- [`d34ff53`](https://www.github.com/tauri-apps/create-tauri-app/commit/d34ff53000954c45f1fcb8bcd4c416b252f9f6f2) ([#746](https://www.github.com/tauri-apps/create-tauri-app/pull/746) by [@lucasfernog](https://www.github.com/tauri-apps/create-tauri-app/../../lucasfernog)) Updated the templates to Tauri v2 RC. +- [`26eb17d`](https://www.github.com/tauri-apps/create-tauri-app/commit/26eb17ddbc3a3aeb0909b444d213b637c223b765) ([#748](https://www.github.com/tauri-apps/create-tauri-app/pull/748) by [@lucasfernog](https://www.github.com/tauri-apps/create-tauri-app/../../lucasfernog)) Removed the `--mobile` and `--no-mobile` arguments. When using `--rc` we will always generate a template that supports both desktop and mobile using Tauri v2. + ## \[4.0.3] - [`db2f4de`](https://www.github.com/tauri-apps/create-tauri-app/commit/db2f4de39a097a5a8fb7c62889c60fb056aae37a) Fix `blazor` template rendered `Home.razor` incorrectly. diff --git a/Cargo.lock b/Cargo.lock index 72ea604f..96478eab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -98,7 +98,7 @@ dependencies = [ [[package]] name = "create-tauri-app" -version = "4.0.3" +version = "4.1.0" dependencies = [ "anyhow", "ctrlc", diff --git a/Cargo.toml b/Cargo.toml index 9e6af992..b6c2326d 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.0.3" +version = "4.1.0" edition = "2021" license = "Apache-2.0 OR MIT" readme = "README.md" diff --git a/create-tauri-app.ps1 b/create-tauri-app.ps1 index e0bc9817..c9ac905b 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.0.3" +$__TAG_NAME__ = "create-tauri-app-v4.1.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 6ef2ac01..3ffbef0c 100644 --- a/create-tauri-app.sh +++ b/create-tauri-app.sh @@ -44,7 +44,7 @@ main() { ;; esac - local __TAG_NAME__="create-tauri-app-v4.0.3" + local __TAG_NAME__="create-tauri-app-v4.1.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/node/CHANGELOG.md b/node/CHANGELOG.md index 44a897d5..397cb951 100644 --- a/node/CHANGELOG.md +++ b/node/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[4.1.0] + +- [`d34ff53`](https://www.github.com/tauri-apps/create-tauri-app/commit/d34ff53000954c45f1fcb8bcd4c416b252f9f6f2) ([#746](https://www.github.com/tauri-apps/create-tauri-app/pull/746) by [@lucasfernog](https://www.github.com/tauri-apps/create-tauri-app/../../lucasfernog)) Updated the templates to Tauri v2 RC. +- [`26eb17d`](https://www.github.com/tauri-apps/create-tauri-app/commit/26eb17ddbc3a3aeb0909b444d213b637c223b765) ([#748](https://www.github.com/tauri-apps/create-tauri-app/pull/748) by [@lucasfernog](https://www.github.com/tauri-apps/create-tauri-app/../../lucasfernog)) Removed the `--mobile` and `--no-mobile` arguments. When using `--rc` we will always generate a template that supports both desktop and mobile using Tauri v2. + +### Dependencies + +- Upgraded to `create-tauri-app@4.1.0` + ## \[4.0.3] - [`db2f4de`](https://www.github.com/tauri-apps/create-tauri-app/commit/db2f4de39a097a5a8fb7c62889c60fb056aae37a) Fix `blazor` template rendered `Home.razor` incorrectly. diff --git a/node/package.json b/node/package.json index 4b2941cf..a4737f19 100644 --- a/node/package.json +++ b/node/package.json @@ -1,6 +1,6 @@ { "name": "create-tauri-app", - "version": "4.0.3", + "version": "4.1.0", "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 e0bc9817..c9ac905b 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.0.3" +$__TAG_NAME__ = "create-tauri-app-v4.1.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/worker/scripts/create-tauri-app.sh b/worker/scripts/create-tauri-app.sh index 6ef2ac01..3ffbef0c 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.0.3" + local __TAG_NAME__="create-tauri-app-v4.1.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}"