Skip to content

Commit

Permalink
apply version updates (#201)
Browse files Browse the repository at this point in the history
Co-authored-by: amrbashir <amrbashir@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and amrbashir committed Oct 4, 2022
1 parent ee4469b commit 04fb4e6
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 24 deletions.
5 changes: 0 additions & 5 deletions .changes/cli-node.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/svelte-kit-templates.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/vanilla-ts-import.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.5.0"
$__TAG_NAME__ = "create-tauri-app-v2.6.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.5.0"
local __TAG_NAME__="create-tauri-app-v2.6.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.6.0]

- Add `svelte-kit` and `svelte-kit-ts` template.
- [0b09cc1](https://www.github.com/tauri-apps/create-tauri-app/commit/0b09cc167784b4400c2078e61f1b7bbe45ba54a3) feat: add `Sveltekit` templates ([#200](https://www.github.com/tauri-apps/create-tauri-app/pull/200)) on 2022-10-04
- Use `import` in vanilla-ts instead of the global Tauri object.
- [dcca18c](https://www.github.com/tauri-apps/create-tauri-app/commit/dcca18c2de3bd14304bee849015c33880304d647) fix: Use `import` in vanilla-ts fragment. ([#198](https://www.github.com/tauri-apps/create-tauri-app/pull/198)) on 2022-10-01
- [ee4469b](https://www.github.com/tauri-apps/create-tauri-app/commit/ee4469b97a05ab66ccbb28807eb2e53f333b5d48) chore: fix changefile on 2022-10-04

## \[2.5.0]

- Add `clojurescript` template.
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.5.0"
version = "2.6.0"
edition = "2021"
license = "Apache-2.0 OR MIT"
readme = "README.md"
Expand Down
10 changes: 10 additions & 0 deletions packages/cli/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## \[2.6.0]

- Fix crash when nodejs binary has the version in its name, for example `node18`
- [09c0ed6](https://www.github.com/tauri-apps/create-tauri-app/commit/09c0ed6bfba893fbfb1ac304720b72716f7137d1) fix(cli/node): fix invoking the node cli from a shim, closes [#193](https://www.github.com/tauri-apps/create-tauri-app/pull/193) ([#207](https://www.github.com/tauri-apps/create-tauri-app/pull/207)) on 2022-10-04
- Add `svelte-kit` and `svelte-kit-ts` template.
- [0b09cc1](https://www.github.com/tauri-apps/create-tauri-app/commit/0b09cc167784b4400c2078e61f1b7bbe45ba54a3) feat: add `Sveltekit` templates ([#200](https://www.github.com/tauri-apps/create-tauri-app/pull/200)) on 2022-10-04
- Use `import` in vanilla-ts instead of the global Tauri object.
- [dcca18c](https://www.github.com/tauri-apps/create-tauri-app/commit/dcca18c2de3bd14304bee849015c33880304d647) fix: Use `import` in vanilla-ts fragment. ([#198](https://www.github.com/tauri-apps/create-tauri-app/pull/198)) on 2022-10-01
- [ee4469b](https://www.github.com/tauri-apps/create-tauri-app/commit/ee4469b97a05ab66ccbb28807eb2e53f333b5d48) chore: fix changefile on 2022-10-04

## \[2.5.0]

- Add `clojurescript` 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": "2.5.0",
"version": "2.6.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.5.0"
$__TAG_NAME__ = "create-tauri-app-v2.6.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.5.0"
local __TAG_NAME__="create-tauri-app-v2.6.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 04fb4e6

Please sign in to comment.