Skip to content

Commit c11833c

Browse files
apply version updates (#951)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent cd7ebb5 commit c11833c

15 files changed

Lines changed: 29 additions & 43 deletions

.changes/add-process-import-vite-templates.md.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/angular-22.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/blazor-need-tauri-cli.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/fix-tauri-cli-cmd-install-command.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/remove-unnecessary-async-from-vite-configs.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/update-vite-ts-dependencies.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## \[4.7.1]
4+
5+
- [`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
6+
- [`5f8ed15`](https://www.github.com/tauri-apps/create-tauri-app/commit/5f8ed15d41101abc49de14e139d989f69fb01c32) ([#976](https://www.github.com/tauri-apps/create-tauri-app/pull/976) by [@Legend-Master](https://www.github.com/tauri-apps/create-tauri-app/../../Legend-Master)) Updated angular template to v22 and typescript to v6
7+
- [`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
8+
- [`5bf2822`](https://www.github.com/tauri-apps/create-tauri-app/commit/5bf282217ff4455493971a3d2f59e4f53f1cddd7) ([#965](https://www.github.com/tauri-apps/create-tauri-app/pull/965) by [@SoftAndoWeto](https://www.github.com/tauri-apps/create-tauri-app/../../SoftAndoWeto)) Remove CMD-incompatible quotes from the printed `tauri-cli` install command.
9+
- [`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
10+
- [`847647e`](https://www.github.com/tauri-apps/create-tauri-app/commit/847647e94a5ec12a83f70b785f55569453d7cdbf) ([#975](https://www.github.com/tauri-apps/create-tauri-app/pull/975) by [@Legend-Master](https://www.github.com/tauri-apps/create-tauri-app/../../Legend-Master)) Updated vite to v8 and typescript to v6 for all templates
11+
312
## \[4.7.0]
413

514
- [`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

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "create-tauri-app"
33
description = "Rapidly scaffold out a new tauri app project."
44
authors = ["Tauri Programme within The Commons Conservancy"]
5-
version = "4.7.0"
5+
version = "4.7.1"
66
edition = "2021"
77
license = "Apache-2.0 OR MIT"
88
readme = "README.md"

create-tauri-app.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ $bitness = if ([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchi
99
} else {
1010
"i686"
1111
}
12-
$__TAG_NAME__ = "create-tauri-app-v4.7.0"
12+
$__TAG_NAME__ = "create-tauri-app-v4.7.1"
1313
# $url="https://github.com/tauri-apps/create-tauri-app/releases/download/$__TAG_NAME__/create-tauri-app-$bitness-pc-windows-msvc.exe"
1414
$url="https://create.tauri.app/download/bin?tag=$__TAG_NAME__&arch=$bitness-pc-windows-msvc&ext=.exe"
1515
$outFile = "$Env:TEMP\create-tauri-app.exe"

0 commit comments

Comments
 (0)