mirror of
https://github.com/tauri-apps/create-tauri-app.git
synced 2026-01-31 00:45:16 +01:00
Apply Version Updates From Current Changes (#808)
Co-authored-by: amrbashir <amrbashir@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
6ec1743525
commit
25a3d4bb1e
@@ -1,6 +0,0 @@
|
||||
---
|
||||
"create-tauri-app": "patch"
|
||||
"create-tauri-app-js": "patch"
|
||||
---
|
||||
|
||||
Fix incorrect version printed for installing `tauri-cli` command
|
||||
@@ -1,5 +1,9 @@
|
||||
# Changelog
|
||||
|
||||
## \[4.5.1]
|
||||
|
||||
- [`caf8a6e`](https://www.github.com/tauri-apps/create-tauri-app/commit/caf8a6ed0189c6a5afe4522a3cb2e8db5aa30459) ([#806](https://www.github.com/tauri-apps/create-tauri-app/pull/806)) Fix incorrect version printed for installing `tauri-cli` command
|
||||
|
||||
## \[4.5.0]
|
||||
|
||||
- [`1130b7b`](https://www.github.com/tauri-apps/create-tauri-app/commit/1130b7b3ad20fe094eb49815ac7a777ea08f0157) ([#806](https://www.github.com/tauri-apps/create-tauri-app/pull/806) by [@lucasfernog](https://www.github.com/tauri-apps/create-tauri-app/../../lucasfernog)) Update to v2 stable, meaning the `--alpha`, `--beta`, `--rc` flags are removed, and added a `--tauri-version [1|2]` option to change the Tauri version (defaults to latest stable - v2).
|
||||
|
||||
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -119,7 +119,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "create-tauri-app"
|
||||
version = "4.5.0"
|
||||
version = "4.5.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"ctrlc",
|
||||
|
||||
@@ -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 = "4.5.0"
|
||||
version = "4.5.1"
|
||||
edition = "2021"
|
||||
license = "Apache-2.0 OR MIT"
|
||||
readme = "README.md"
|
||||
|
||||
@@ -9,7 +9,7 @@ $bitness = if ([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchi
|
||||
} else {
|
||||
"i686"
|
||||
}
|
||||
$__TAG_NAME__ = "create-tauri-app-v4.5.0"
|
||||
$__TAG_NAME__ = "create-tauri-app-v4.5.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"
|
||||
|
||||
@@ -44,7 +44,7 @@ main() {
|
||||
;;
|
||||
esac
|
||||
|
||||
local __TAG_NAME__="create-tauri-app-v4.5.0"
|
||||
local __TAG_NAME__="create-tauri-app-v4.5.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}"
|
||||
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# Changelog
|
||||
|
||||
## \[4.5.1]
|
||||
|
||||
- [`caf8a6e`](https://www.github.com/tauri-apps/create-tauri-app/commit/caf8a6ed0189c6a5afe4522a3cb2e8db5aa30459) ([#806](https://www.github.com/tauri-apps/create-tauri-app/pull/806)) Fix incorrect version printed for installing `tauri-cli` command
|
||||
|
||||
### Dependencies
|
||||
|
||||
- Upgraded to `create-tauri-app@4.5.1`
|
||||
|
||||
## \[4.5.0]
|
||||
|
||||
- [`1130b7b`](https://www.github.com/tauri-apps/create-tauri-app/commit/1130b7b3ad20fe094eb49815ac7a777ea08f0157) ([#806](https://www.github.com/tauri-apps/create-tauri-app/pull/806) by [@lucasfernog](https://www.github.com/tauri-apps/create-tauri-app/../../lucasfernog)) Update to v2 stable, meaning the `--alpha`, `--beta`, `--rc` flags are removed, and added a `--tauri-version [1|2]` option to change the Tauri version (defaults to latest stable - v2).
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "create-tauri-app",
|
||||
"version": "4.5.0",
|
||||
"version": "4.5.1",
|
||||
"description": "Rapidly scaffold out a new tauri app project.",
|
||||
"funding": {
|
||||
"type": "opencollective",
|
||||
|
||||
@@ -9,7 +9,7 @@ $bitness = if ([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchi
|
||||
} else {
|
||||
"i686"
|
||||
}
|
||||
$__TAG_NAME__ = "create-tauri-app-v4.5.0"
|
||||
$__TAG_NAME__ = "create-tauri-app-v4.5.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"
|
||||
|
||||
@@ -44,7 +44,7 @@ main() {
|
||||
;;
|
||||
esac
|
||||
|
||||
local __TAG_NAME__="create-tauri-app-v4.5.0"
|
||||
local __TAG_NAME__="create-tauri-app-v4.5.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}"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user