Skip to content

Commit 093a0d9

Browse files
apply version updates (#369)
Co-authored-by: amrbashir <amrbashir@users.noreply.github.com>
1 parent d2c5f1d commit 093a0d9

13 files changed

Lines changed: 28 additions & 32 deletions

.changes/alpha-template.md

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

.changes/deps.md

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

.changes/msrv-1.59.md

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

.changes/stip.md

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

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.

create-tauri-app.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: MIT
44

55
$bitness = if ([Environment]::Is64BitOperatingSystem) { "x86_64" } else { "i686" }
6-
$__TAG_NAME__ = "create-tauri-app-v3.1.2"
6+
$__TAG_NAME__ = "create-tauri-app-v3.2.0"
77
# $url="https://github.com/tauri-apps/create-tauri-app/releases/download/$__TAG_NAME__/create-tauri-app-$bitness-pc-windows-msvc.exe"
88
$url="https://create.tauri.app/download/bin?tag=$__TAG_NAME__&arch=$bitness-pc-windows-msvc&ext=.exe"
99
$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-v3.1.2"
47+
local __TAG_NAME__="create-tauri-app-v3.2.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

packages/cli/CHANGELOG.md

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

3+
## \[3.2.0]
4+
5+
- Fix `--alpha` templates that are generated without mobile support.
6+
- [d2c5f1d](https://www.github.com/tauri-apps/create-tauri-app/commit/d2c5f1d12cb0cbedb2247765b053048cb90da60d) fix: remove `[lib]` section in 2.0-alpha tempaltes ([#374](https://www.github.com/tauri-apps/create-tauri-app/pull/374)) on 2023-03-14
7+
- Show a table of missing dependencies with installation instructions.
8+
- [7b992e5](https://www.github.com/tauri-apps/create-tauri-app/commit/7b992e544c6824dbf29d0fab38488e3b516142b1) feat: show missing deps after template bootstrap ([#367](https://www.github.com/tauri-apps/create-tauri-app/pull/367)) on 2023-03-13
9+
- Bump MSRV to 1.59
10+
- [7c3231c](https://www.github.com/tauri-apps/create-tauri-app/commit/7c3231c08505dfaf139f498b6ca2241c40006c8f) feat: strip debug symbols from binaries ([#370](https://www.github.com/tauri-apps/create-tauri-app/pull/370)) on 2023-03-14
11+
- Strip debug symobls from binaries.
12+
- [7c3231c](https://www.github.com/tauri-apps/create-tauri-app/commit/7c3231c08505dfaf139f498b6ca2241c40006c8f) feat: strip debug symbols from binaries ([#370](https://www.github.com/tauri-apps/create-tauri-app/pull/370)) on 2023-03-14
13+
314
## \[3.1.2]
415

516
- Fix unwanted refresh when clicking on the greet button in `leptos` template

packages/cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
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 = "3.1.2"
5+
version = "3.2.0"
66
edition = "2021"
77
license = "Apache-2.0 OR MIT"
88
readme = "README.md"
@@ -20,4 +20,4 @@ path = "src/main.rs"
2020
anyhow = "1"
2121
dialoguer = "0.10"
2222
pico-args = "0.5"
23-
rust-embed = { version = "6.6", features = [ "compression", "interpolate-folder-path" ] }
23+
rust-embed = { version = "6.6", features = [ "compression", "interpolate-folder-path" ] }

packages/cli/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+
## \[3.2.0]
4+
5+
- Fix `--alpha` templates that are generated without mobile support.
6+
- [d2c5f1d](https://www.github.com/tauri-apps/create-tauri-app/commit/d2c5f1d12cb0cbedb2247765b053048cb90da60d) fix: remove `[lib]` section in 2.0-alpha tempaltes ([#374](https://www.github.com/tauri-apps/create-tauri-app/pull/374)) on 2023-03-14
7+
- Show a table of missing dependencies with installation instructions.
8+
- [7b992e5](https://www.github.com/tauri-apps/create-tauri-app/commit/7b992e544c6824dbf29d0fab38488e3b516142b1) feat: show missing deps after template bootstrap ([#367](https://www.github.com/tauri-apps/create-tauri-app/pull/367)) on 2023-03-13
9+
- Bump MSRV to 1.59
10+
- [7c3231c](https://www.github.com/tauri-apps/create-tauri-app/commit/7c3231c08505dfaf139f498b6ca2241c40006c8f) feat: strip debug symbols from binaries ([#370](https://www.github.com/tauri-apps/create-tauri-app/pull/370)) on 2023-03-14
11+
312
## \[3.1.2]
413

514
- Fix unwanted refresh when clicking on the greet button in `leptos` template

0 commit comments

Comments
 (0)