Skip to content

Commit

Permalink
apply version updates (#369)
Browse files Browse the repository at this point in the history
Co-authored-by: amrbashir <[email protected]>
  • Loading branch information
github-actions[bot] and amrbashir authored Mar 15, 2023
1 parent d2c5f1d commit 093a0d9
Show file tree
Hide file tree
Showing 13 changed files with 28 additions and 32 deletions.
6 changes: 0 additions & 6 deletions .changes/alpha-template.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/deps.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changes/msrv-1.59.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/stip.md

This file was deleted.

2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion create-tauri-app.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# SPDX-License-Identifier: MIT

$bitness = if ([Environment]::Is64BitOperatingSystem) { "x86_64" } else { "i686" }
$__TAG_NAME__ = "create-tauri-app-v3.1.2"
$__TAG_NAME__ = "create-tauri-app-v3.2.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"
Expand Down
2 changes: 1 addition & 1 deletion create-tauri-app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ main() {
;;
esac

local __TAG_NAME__="create-tauri-app-v3.1.2"
local __TAG_NAME__="create-tauri-app-v3.2.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}"

Expand Down
11 changes: 11 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## \[3.2.0]

- Fix `--alpha` templates that are generated without mobile support.
- [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
- Show a table of missing dependencies with installation instructions.
- [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
- Bump MSRV to 1.59
- [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
- Strip debug symobls from binaries.
- [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

## \[3.1.2]

- Fix unwanted refresh when clicking on the greet button in `leptos` template
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "3.1.2"
version = "3.2.0"
edition = "2021"
license = "Apache-2.0 OR MIT"
readme = "README.md"
Expand All @@ -20,4 +20,4 @@ path = "src/main.rs"
anyhow = "1"
dialoguer = "0.10"
pico-args = "0.5"
rust-embed = { version = "6.6", features = [ "compression", "interpolate-folder-path" ] }
rust-embed = { version = "6.6", features = [ "compression", "interpolate-folder-path" ] }
9 changes: 9 additions & 0 deletions packages/cli/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## \[3.2.0]

- Fix `--alpha` templates that are generated without mobile support.
- [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
- Show a table of missing dependencies with installation instructions.
- [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
- Bump MSRV to 1.59
- [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

## \[3.1.2]

- Fix unwanted refresh when clicking on the greet button in `leptos` template
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-tauri-app",
"version": "3.1.2",
"version": "3.2.0",
"description": "Rapidly scaffold out a new tauri app project.",
"funding": {
"type": "opencollective",
Expand Down
2 changes: 1 addition & 1 deletion packages/worker/scripts/create-tauri-app.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# SPDX-License-Identifier: MIT

$bitness = if ([Environment]::Is64BitOperatingSystem) { "x86_64" } else { "i686" }
$__TAG_NAME__ = "create-tauri-app-v3.1.2"
$__TAG_NAME__ = "create-tauri-app-v3.2.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"
Expand Down
2 changes: 1 addition & 1 deletion packages/worker/scripts/create-tauri-app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ main() {
;;
esac

local __TAG_NAME__="create-tauri-app-v3.1.2"
local __TAG_NAME__="create-tauri-app-v3.2.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}"

Expand Down

0 comments on commit 093a0d9

Please sign in to comment.