Skip to content

Commit

Permalink
apply version updates (#149)
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 Aug 30, 2022
1 parent ea9a90c commit 27f31ae
Show file tree
Hide file tree
Showing 13 changed files with 33 additions and 28 deletions.
5 changes: 0 additions & 5 deletions .changes/macos-icon.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/solid-className-to-class.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/yew-template-before-dev-command.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/yew-template-with-global.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.1.0"
$__TAG_NAME__ = "create-tauri-app-v2.1.1"
# $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.1.0"
local __TAG_NAME__="create-tauri-app-v2.1.1"
# 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

## \[2.1.1]

- Add an optimized macOS icon so that building from a template doesn't cause errors.
- [a28848c](https://github.com/tauri-apps/create-tauri-app/commit/a28848c009c111da367e19be3bc93669f9b8bf6b) fix: add missing `icon.icns` file, closes [#143](https://github.com/tauri-apps/create-tauri-app/pull/143) ([#152](https://github.com/tauri-apps/create-tauri-app/pull/152)) on 2022-08-30
- Fix solid template IDE type errors by changing `className` to `class`
- [ea9a90c](https://github.com/tauri-apps/create-tauri-app/commit/ea9a90c30385ac3e3ea081ac43c1479e563b3bac) fix(cli/fragments): change solid's `className` to `class`, closes [#144](https://github.com/tauri-apps/create-tauri-app/pull/144) ([#150](https://github.com/tauri-apps/create-tauri-app/pull/150)) on 2022-08-30
- Fixed yew template "beforeDevCommand" from "trunk build" to "trunk serve". Before when you called "tauri dev" infinite loop will occur waiting for dev server to become available at "http://localhost:1420".
- [675b091](https://github.com/tauri-apps/create-tauri-app/commit/675b091f3033dec0413d9d43329be8c46dd31f9c) fix(cli/fragments): fix yew fragment beforeDevCommand and withGlobalTauri ([#147](https://github.com/tauri-apps/create-tauri-app/pull/147)) on 2022-08-30
- Changed "withGlobalTauri" for yew template from "false" to "true" so example frontend can actually "invoke" backend methods
- [675b091](https://github.com/tauri-apps/create-tauri-app/commit/675b091f3033dec0413d9d43329be8c46dd31f9c) fix(cli/fragments): fix yew fragment beforeDevCommand and withGlobalTauri ([#147](https://github.com/tauri-apps/create-tauri-app/pull/147)) on 2022-08-30

## \[2.1.0]

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

## \[2.1.1]

- Add an optimized macOS icon so that building from a template doesn't cause errors.
- Bumped due to a bump in create-tauri-app.
- [a28848c](https://github.com/tauri-apps/create-tauri-app/commit/a28848c009c111da367e19be3bc93669f9b8bf6b) fix: add missing `icon.icns` file, closes [#143](https://github.com/tauri-apps/create-tauri-app/pull/143) ([#152](https://github.com/tauri-apps/create-tauri-app/pull/152)) on 2022-08-30
- Fix solid template IDE type errors by changing `className` to `class`
- Bumped due to a bump in create-tauri-app.
- [ea9a90c](https://github.com/tauri-apps/create-tauri-app/commit/ea9a90c30385ac3e3ea081ac43c1479e563b3bac) fix(cli/fragments): change solid's `className` to `class`, closes [#144](https://github.com/tauri-apps/create-tauri-app/pull/144) ([#150](https://github.com/tauri-apps/create-tauri-app/pull/150)) on 2022-08-30
- Fixed yew template "beforeDevCommand" from "trunk build" to "trunk serve". Before when you called "tauri dev" infinite loop will occur waiting for dev server to become available at "http://localhost:1420".
- Bumped due to a bump in create-tauri-app.
- [675b091](https://github.com/tauri-apps/create-tauri-app/commit/675b091f3033dec0413d9d43329be8c46dd31f9c) fix(cli/fragments): fix yew fragment beforeDevCommand and withGlobalTauri ([#147](https://github.com/tauri-apps/create-tauri-app/pull/147)) on 2022-08-30
- Changed "withGlobalTauri" for yew template from "false" to "true" so example frontend can actually "invoke" backend methods
- Bumped due to a bump in create-tauri-app.
- [675b091](https://github.com/tauri-apps/create-tauri-app/commit/675b091f3033dec0413d9d43329be8c46dd31f9c) fix(cli/fragments): fix yew fragment beforeDevCommand and withGlobalTauri ([#147](https://github.com/tauri-apps/create-tauri-app/pull/147)) on 2022-08-30

## \[2.1.0]

- Add `next` and `next-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.1.0",
"version": "2.1.1",
"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.1.0"
$__TAG_NAME__ = "create-tauri-app-v2.1.1"
# $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.1.0"
local __TAG_NAME__="create-tauri-app-v2.1.1"
# 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 27f31ae

Please sign in to comment.