Skip to content

Commit fee9b53

Browse files
apply version updates (#884)
Co-authored-by: amrbashir <[email protected]>
1 parent 593f90d commit fee9b53

File tree

11 files changed

+21
-20
lines changed

11 files changed

+21
-20
lines changed

.changes/dioxus-out-dir.md

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

.changes/svelte-spa.md

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

CHANGELOG.md

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

3+
## \[4.5.10]
4+
5+
- [`593f90d`](https://www.github.com/tauri-apps/create-tauri-app/commit/593f90d91220a78334b5246f4c07c01288b80f70) ([#888](https://www.github.com/tauri-apps/create-tauri-app/pull/888) by [@amrbashir](https://www.github.com/tauri-apps/create-tauri-app/../../amrbashir)) Update `dioxus` template to use `dx bundle` and update the `frontendDist` option in the generated `tauri.conf.json` file in the template.
6+
- [`5633bcf`](https://www.github.com/tauri-apps/create-tauri-app/commit/5633bcf8c9229e8bc4f845be6648a598674f220f) ([#883](https://www.github.com/tauri-apps/create-tauri-app/pull/883) by [@Ruben-Kruepper](https://www.github.com/tauri-apps/create-tauri-app/../../Ruben-Kruepper)) Changed Svelte templates to use `@sveltejs/adapter-static`'s fallback feature instead of disabling SSR per-router, See https://svelte.dev/docs/kit/single-page-apps
7+
38
## \[4.5.9]
49

510
- [`d9bbb13`](https://www.github.com/tauri-apps/create-tauri-app/commit/d9bbb13ddf7689303c737e9da7451267a4314154) Update `leptos` template to `0.7`

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.5.9"
5+
version = "4.5.10"
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.5.9"
12+
$__TAG_NAME__ = "create-tauri-app-v4.5.10"
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"

create-tauri-app.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ main() {
4444
;;
4545
esac
4646

47-
local __TAG_NAME__="create-tauri-app-v4.5.9"
47+
local __TAG_NAME__="create-tauri-app-v4.5.10"
4848
# local _url="https://github.com/tauri-apps/create-tauri-app/releases/download/${__TAG_NAME__}/create-tauri-app-${_arch}${_ext}"
4949
local _url="https://create.tauri.app/download/bin?tag=${__TAG_NAME__}&arch=${_arch}&ext=${_ext}"
5050

node/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.5.10]
4+
5+
- [`593f90d`](https://www.github.com/tauri-apps/create-tauri-app/commit/593f90d91220a78334b5246f4c07c01288b80f70) ([#888](https://www.github.com/tauri-apps/create-tauri-app/pull/888) by [@amrbashir](https://www.github.com/tauri-apps/create-tauri-app/../../amrbashir)) Update `dioxus` template to use `dx bundle` and update the `frontendDist` option in the generated `tauri.conf.json` file in the template.
6+
- [`5633bcf`](https://www.github.com/tauri-apps/create-tauri-app/commit/5633bcf8c9229e8bc4f845be6648a598674f220f) ([#883](https://www.github.com/tauri-apps/create-tauri-app/pull/883) by [@Ruben-Kruepper](https://www.github.com/tauri-apps/create-tauri-app/../../Ruben-Kruepper)) Changed Svelte templates to use `@sveltejs/adapter-static`'s fallback feature instead of disabling SSR per-router, See https://svelte.dev/docs/kit/single-page-apps
7+
8+
### Dependencies
9+
10+
- Upgraded to `[email protected]`
11+
312
## \[4.5.9]
413

514
- [`d9bbb13`](https://www.github.com/tauri-apps/create-tauri-app/commit/d9bbb13ddf7689303c737e9da7451267a4314154) Update `leptos` template to `0.7`

node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-tauri-app",
3-
"version": "4.5.9",
3+
"version": "4.5.10",
44
"description": "Rapidly scaffold out a new tauri app project.",
55
"funding": {
66
"type": "opencollective",

worker/scripts/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.5.9"
12+
$__TAG_NAME__ = "create-tauri-app-v4.5.10"
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)