Skip to content

Commit 9e7a039

Browse files
apply version updates (#807)
Co-authored-by: lucasfernog <[email protected]>
1 parent 1130b7b commit 9e7a039

10 files changed

+19
-13
lines changed

.changes/tauri-v2-stable.md

-6
This file was deleted.

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## \[4.5.0]
4+
5+
- [`1130b7b`](https://www.github.com/tauri-apps/create-tauri-app/commit/1130b7b3ad20fe094eb49815ac7a777ea08f0157) ([#806](https://www.github.com/tauri-apps/create-tauri-app/pull/806) by [@lucasfernog](https://www.github.com/tauri-apps/create-tauri-app/../../lucasfernog)) Update to v2 stable, meaning the `--alpha`, `--beta`, `--rc` flags are removed, and added a `--tauri-version [1|2]` option to change the Tauri version (defaults to latest stable - v2).
6+
37
## \[4.4.2]
48

59
- [`c8d8fa8`](https://www.github.com/tauri-apps/create-tauri-app/commit/c8d8fa8c105416dbc74d3e0cfce6e602d5240b82) ([#797](https://www.github.com/tauri-apps/create-tauri-app/pull/797) by [@amrbashir](https://www.github.com/tauri-apps/create-tauri-app/../../amrbashir)) Suggest using `--locked` flag when installing CLIs using `cargo install`

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
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.4.2"
5+
version = "4.5.0"
66
edition = "2021"
77
license = "Apache-2.0 OR MIT"
88
readme = "README.md"

create-tauri-app.ps1

+1-1
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.4.2"
12+
$__TAG_NAME__ = "create-tauri-app-v4.5.0"
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

+1-1
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.4.2"
47+
local __TAG_NAME__="create-tauri-app-v4.5.0"
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

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## \[4.5.0]
4+
5+
- [`1130b7b`](https://www.github.com/tauri-apps/create-tauri-app/commit/1130b7b3ad20fe094eb49815ac7a777ea08f0157) ([#806](https://www.github.com/tauri-apps/create-tauri-app/pull/806) by [@lucasfernog](https://www.github.com/tauri-apps/create-tauri-app/../../lucasfernog)) Update to v2 stable, meaning the `--alpha`, `--beta`, `--rc` flags are removed, and added a `--tauri-version [1|2]` option to change the Tauri version (defaults to latest stable - v2).
6+
7+
### Dependencies
8+
9+
- Upgraded to `[email protected]`
10+
311
## \[4.4.2]
412

513
- [`c8d8fa8`](https://www.github.com/tauri-apps/create-tauri-app/commit/c8d8fa8c105416dbc74d3e0cfce6e602d5240b82) ([#797](https://www.github.com/tauri-apps/create-tauri-app/pull/797) by [@amrbashir](https://www.github.com/tauri-apps/create-tauri-app/../../amrbashir)) Suggest using `--locked` flag when installing CLIs using `cargo install`

node/package.json

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

worker/scripts/create-tauri-app.ps1

+1-1
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.4.2"
12+
$__TAG_NAME__ = "create-tauri-app-v4.5.0"
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"

worker/scripts/create-tauri-app.sh

+1-1
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.4.2"
47+
local __TAG_NAME__="create-tauri-app-v4.5.0"
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

0 commit comments

Comments
 (0)