apply version updates (#9913)

This commit is contained in:
github-actions[bot] 2024-05-29 17:02:21 -03:00 committed by GitHub
parent 0a6e62ac58
commit 916a26c2a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 71 additions and 63 deletions

View File

@ -173,6 +173,7 @@
".changes/multiwebview-bounds-fixes.md",
".changes/nsis-append-product-name.md",
".changes/nsis-dpi-aware.md",
".changes/nsis-shortcuts-regression.md",
".changes/path-result-error-rexport.md",
".changes/permission-platforms.md",
".changes/permission-table.md",

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.1-beta.16]
### Bug Fixes
- [`38df6ea1c`](https://www.github.com/tauri-apps/tauri/commit/38df6ea1c184307d294ee467c4b1c6a488b6e289)([#9909](https://www.github.com/tauri-apps/tauri/pull/9909)) Fix regression in NSIS where it created shortcuts that point to non-existent files.
## \[2.0.1-beta.15]
### New Features

View File

@ -2,10 +2,10 @@ workspace = {}
[package]
name = "tauri-bundler"
version = "2.0.1-beta.15"
version = "2.0.1-beta.16"
authors = [
"George Burton <burtonageo@gmail.com>",
"Tauri Programme within The Commons Conservancy",
"Tauri Programme within The Commons Conservancy"
]
categories = [ "command-line-utilities", "development-tools::cargo-plugins" ]
license = "Apache-2.0 OR MIT"
@ -17,9 +17,7 @@ rust-version = "1.70"
exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ]
[dependencies]
tauri-utils = { version = "2.0.0-beta.17", path = "../../core/tauri-utils", features = [
"resources",
] }
tauri-utils = { version = "2.0.0-beta.17", path = "../../core/tauri-utils", features = [ "resources" ] }
image = "0.24.9"
flate2 = "1.0"
anyhow = "1.0"
@ -34,9 +32,7 @@ tempfile = "3.10.1"
log = { version = "0.4.21", features = [ "kv" ] }
dirs-next = "2.0"
os_pipe = "1"
ureq = { version = "2.9.6", default-features = false, features = [
"socks-proxy",
] }
ureq = { version = "2.9.6", default-features = false, features = [ "socks-proxy" ] }
native-tls = { version = "0.2", optional = true }
hex = "0.4"
semver = "1"
@ -53,7 +49,10 @@ glob = "0.3"
[target."cfg(target_os = \"windows\")".dependencies.windows-sys]
version = "0.52"
features = ["Win32_System_SystemInformation", "Win32_System_Diagnostics_Debug"]
features = [
"Win32_System_SystemInformation",
"Win32_System_Diagnostics_Debug"
]
[target."cfg(target_os = \"macos\")".dependencies]
icns = { package = "tauri-icns", version = "0.1" }

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-beta.20]
### Dependencies
- Upgraded to `tauri-bundler@2.0.1-beta.16`
## \[2.0.0-beta.19]
### New Features

View File

@ -4839,7 +4839,7 @@ dependencies = [
[[package]]
name = "tauri-bundler"
version = "2.0.1-beta.15"
version = "2.0.1-beta.16"
dependencies = [
"anyhow",
"ar",
@ -4881,7 +4881,7 @@ dependencies = [
[[package]]
name = "tauri-cli"
version = "2.0.0-beta.19"
version = "2.0.0-beta.20"
dependencies = [
"anyhow",
"axum",

View File

@ -3,7 +3,7 @@ members = ["node"]
[package]
name = "tauri-cli"
version = "2.0.0-beta.19"
version = "2.0.0-beta.20"
authors = [ "Tauri Programme within The Commons Conservancy" ]
edition = "2021"
rust-version = "1.70"
@ -20,7 +20,7 @@ include = [
"*.rs",
"tauri.gitignore",
"tauri-dev-watcher.gitignore",
"LICENSE*",
"LICENSE*"
]
[package.metadata.binstall]
@ -48,7 +48,7 @@ sublime_fuzzy = "0.7"
clap_complete = "4"
clap = { version = "4.5", features = [ "derive", "env" ] }
anyhow = "1.0"
tauri-bundler = { version = "2.0.1-beta.15", default-features = false, path = "../bundler" }
tauri-bundler = { version = "2.0.1-beta.16", default-features = false, path = "../bundler" }
colored = "2.1"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = { version = "1.0", features = [ "preserve_order" ] }
@ -58,18 +58,8 @@ shared_child = "1.0"
duct = "0.13"
toml_edit = { version = "0.22", features = [ "serde" ] }
json-patch = "1.2"
tauri-utils = { version = "2.0.0-beta.17", path = "../../core/tauri-utils", features = [
"isolation",
"schema",
"config-json5",
"config-toml",
] }
tauri-utils-v1 = { version = "1", package = "tauri-utils", features = [
"isolation",
"schema",
"config-json5",
"config-toml",
] }
tauri-utils = { version = "2.0.0-beta.17", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
tauri-utils-v1 = { version = "1", package = "tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
toml = "0.8"
jsonschema = "0.17"
handlebars = "5.1"
@ -108,7 +98,7 @@ version = "0.52"
features = [
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_System_Console",
"Win32_System_Console"
]
[target."cfg(unix)".dependencies]
@ -122,7 +112,7 @@ default = ["rustls"]
native-tls = [
"tauri-bundler/native-tls",
"cargo-mobile2/native-tls",
"ureq/native-tls",
"ureq/native-tls"
]
native-tls-vendored = [ "native-tls", "tauri-bundler/native-tls-vendored" ]
rustls = [ "tauri-bundler/rustls", "cargo-mobile2/rustls", "ureq/tls" ]

View File

@ -1,6 +1,6 @@
{
"cli.js": {
"version": "2.0.0-beta.19",
"version": "2.0.0-beta.20",
"node": ">= 10.0.0"
},
"tauri": "2.0.0-beta.22",

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-beta.20]
### Dependencies
- Upgraded to `tauri-cli@2.0.0-beta.20`
## \[2.0.0-beta.19]
### New Features

View File

@ -1,6 +1,6 @@
{
"name": "@tauri-apps/cli",
"version": "2.0.0-beta.19",
"version": "2.0.0-beta.20",
"description": "Command line interface for building Tauri apps",
"funding": {
"type": "opencollective",