Skip to content

Commit

Permalink
apply version updates (#157)
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 Sep 5, 2022
1 parent 717ffd7 commit df57167
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 19 deletions.
6 changes: 0 additions & 6 deletions .changes/vanilla-ts.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/yew-ignore-src-tauri.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-v2.2.0"
$__TAG_NAME__ = "create-tauri-app-v2.3.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-v2.2.0"
local __TAG_NAME__="create-tauri-app-v2.3.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
8 changes: 8 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## \[2.3.0]

- Add `vanilla-ts` templates.
- [8799cdf](https://github.com/tauri-apps/create-tauri-app/commit/8799cdf010f94ee880dc18a04d520a7496015d49) feat(cli/templates) add `vanilla-ts` template, closes [#155](https://github.com/tauri-apps/create-tauri-app/pull/155) ([#156](https://github.com/tauri-apps/create-tauri-app/pull/156)) on 2022-08-31
- Fix yew template triggering trunk rebuilds when tauri files change.
- [d00f8b5](https://github.com/tauri-apps/create-tauri-app/commit/d00f8b57ec6269545dbb81e4e1682eaf51925d55) fix(cli/fragments/yew): ignore `src-tauri` for `trunk serve`, closes [#160](https://github.com/tauri-apps/create-tauri-app/pull/160) on 2022-09-05
- [717ffd7](https://github.com/tauri-apps/create-tauri-app/commit/717ffd7b43edd51f9d1cb0552f95d53e8689d51b) chore: adjust changefile on 2022-09-05

## \[2.2.0]

- Add `preact` and `preact-ts` templates.
Expand Down
2 changes: 1 addition & 1 deletion 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 = "2.2.0"
version = "2.3.0"
edition = "2021"
license = "Apache-2.0 OR MIT"
readme = "README.md"
Expand Down
8 changes: 8 additions & 0 deletions packages/cli/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## \[2.3.0]

- Add `vanilla-ts` templates.
- [8799cdf](https://github.com/tauri-apps/create-tauri-app/commit/8799cdf010f94ee880dc18a04d520a7496015d49) feat(cli/templates) add `vanilla-ts` template, closes [#155](https://github.com/tauri-apps/create-tauri-app/pull/155) ([#156](https://github.com/tauri-apps/create-tauri-app/pull/156)) on 2022-08-31
- Fix yew template triggering trunk rebuilds when tauri files change.
- [d00f8b5](https://github.com/tauri-apps/create-tauri-app/commit/d00f8b57ec6269545dbb81e4e1682eaf51925d55) fix(cli/fragments/yew): ignore `src-tauri` for `trunk serve`, closes [#160](https://github.com/tauri-apps/create-tauri-app/pull/160) on 2022-09-05
- [717ffd7](https://github.com/tauri-apps/create-tauri-app/commit/717ffd7b43edd51f9d1cb0552f95d53e8689d51b) chore: adjust changefile on 2022-09-05

## \[2.2.0]

- Add `preact` and `preact-ts` templates.
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": "2.2.0",
"version": "2.3.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-v2.2.0"
$__TAG_NAME__ = "create-tauri-app-v2.3.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-v2.2.0"
local __TAG_NAME__="create-tauri-app-v2.3.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 df57167

Please sign in to comment.