Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 916a26c

Browse files
apply version updates (#9913)
1 parent 0a6e62a commit 916a26c

9 files changed

Lines changed: 71 additions & 63 deletions

File tree

.changes/pre.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@
173173
".changes/multiwebview-bounds-fixes.md",
174174
".changes/nsis-append-product-name.md",
175175
".changes/nsis-dpi-aware.md",
176+
".changes/nsis-shortcuts-regression.md",
176177
".changes/path-result-error-rexport.md",
177178
".changes/permission-platforms.md",
178179
".changes/permission-table.md",

tooling/bundler/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[2.0.1-beta.16]
4+
5+
### Bug Fixes
6+
7+
- [`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.
8+
39
## \[2.0.1-beta.15]
410

511
### New Features

tooling/bundler/Cargo.toml

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,62 @@
1-
workspace = {}
1+
workspace = { }
22

33
[package]
44
name = "tauri-bundler"
5-
version = "2.0.1-beta.15"
5+
version = "2.0.1-beta.16"
66
authors = [
77
"George Burton <[email protected]>",
8-
"Tauri Programme within The Commons Conservancy",
8+
"Tauri Programme within The Commons Conservancy"
99
]
10-
categories = ["command-line-utilities", "development-tools::cargo-plugins"]
10+
categories = [ "command-line-utilities", "development-tools::cargo-plugins" ]
1111
license = "Apache-2.0 OR MIT"
12-
keywords = ["bundle", "cargo", "tauri"]
12+
keywords = [ "bundle", "cargo", "tauri" ]
1313
repository = "https://github.com/tauri-apps/tauri"
1414
description = "Wrap rust executables in OS-specific app bundles for Tauri"
1515
edition = "2021"
1616
rust-version = "1.70"
17-
exclude = ["CHANGELOG.md", "/target", "rustfmt.toml"]
17+
exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ]
1818

1919
[dependencies]
20-
tauri-utils = { version = "2.0.0-beta.17", path = "../../core/tauri-utils", features = [
21-
"resources",
22-
] }
20+
tauri-utils = { version = "2.0.0-beta.17", path = "../../core/tauri-utils", features = [ "resources" ] }
2321
image = "0.24.9"
2422
flate2 = "1.0"
2523
anyhow = "1.0"
2624
thiserror = "1.0"
2725
serde_json = "1.0"
28-
serde = { version = "1.0", features = ["derive"] }
26+
serde = { version = "1.0", features = [ "derive" ] }
2927
strsim = "0.11.0"
3028
tar = "0.4.40"
3129
walkdir = "2"
3230
handlebars = "5.1"
3331
tempfile = "3.10.1"
34-
log = { version = "0.4.21", features = ["kv"] }
32+
log = { version = "0.4.21", features = [ "kv" ] }
3533
dirs-next = "2.0"
3634
os_pipe = "1"
37-
ureq = { version = "2.9.6", default-features = false, features = [
38-
"socks-proxy",
39-
] }
35+
ureq = { version = "2.9.6", default-features = false, features = [ "socks-proxy" ] }
4036
native-tls = { version = "0.2", optional = true }
4137
hex = "0.4"
4238
semver = "1"
4339
sha1 = "0.10"
4440
sha2 = "0.10"
45-
zip = { version = "0.6", default-features = false, features = ["deflate"] }
41+
zip = { version = "0.6", default-features = false, features = [ "deflate" ] }
4642
dunce = "1"
4743

4844
[target."cfg(target_os = \"windows\")".dependencies]
49-
uuid = { version = "1", features = ["v4", "v5"] }
45+
uuid = { version = "1", features = [ "v4", "v5" ] }
5046
bitness = "0.4"
5147
windows-registry = "0.1.1"
5248
glob = "0.3"
5349

54-
[target."cfg(target_os = \"windows\")".dependencies.windows-sys]
55-
version = "0.52"
56-
features = ["Win32_System_SystemInformation", "Win32_System_Diagnostics_Debug"]
50+
[target."cfg(target_os = \"windows\")".dependencies.windows-sys]
51+
version = "0.52"
52+
features = [
53+
"Win32_System_SystemInformation",
54+
"Win32_System_Diagnostics_Debug"
55+
]
5756

5857
[target."cfg(target_os = \"macos\")".dependencies]
5958
icns = { package = "tauri-icns", version = "0.1" }
60-
time = { version = "0.3", features = ["formatting"] }
59+
time = { version = "0.3", features = [ "formatting" ] }
6160
plist = "1"
6261

6362
[target."cfg(any(target_os = \"macos\", target_os = \"windows\"))".dependencies]
@@ -74,7 +73,7 @@ name = "tauri_bundler"
7473
path = "src/lib.rs"
7574

7675
[features]
77-
default = ["rustls"]
78-
native-tls = ["ureq/native-tls"]
79-
native-tls-vendored = ["native-tls", "native-tls/vendored"]
80-
rustls = ["ureq/tls"]
76+
default = [ "rustls" ]
77+
native-tls = [ "ureq/native-tls" ]
78+
native-tls-vendored = [ "native-tls", "native-tls/vendored" ]
79+
rustls = [ "ureq/tls" ]

tooling/cli/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[2.0.0-beta.20]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[2.0.0-beta.19]
410

511
### New Features

tooling/cli/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tooling/cli/Cargo.toml

Lines changed: 25 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[workspace]
2-
members = ["node"]
2+
members = [ "node" ]
33

44
[package]
55
name = "tauri-cli"
6-
version = "2.0.0-beta.19"
7-
authors = ["Tauri Programme within The Commons Conservancy"]
6+
version = "2.0.0-beta.20"
7+
authors = [ "Tauri Programme within The Commons Conservancy" ]
88
edition = "2021"
99
rust-version = "1.70"
10-
categories = ["gui", "web-programming"]
10+
categories = [ "gui", "web-programming" ]
1111
license = "Apache-2.0 OR MIT"
1212
homepage = "https://tauri.app"
1313
repository = "https://github.com/tauri-apps/tauri"
@@ -20,7 +20,7 @@ include = [
2020
"*.rs",
2121
"tauri.gitignore",
2222
"tauri-dev-watcher.gitignore",
23-
"LICENSE*",
23+
"LICENSE*"
2424
]
2525

2626
[package.metadata.binstall]
@@ -40,60 +40,50 @@ path = "src/main.rs"
4040

4141
[dependencies]
4242
cargo-mobile2 = { version = "0.12.1", default-features = false }
43-
jsonrpsee = { version = "0.22", features = ["server"] }
43+
jsonrpsee = { version = "0.22", features = [ "server" ] }
4444
jsonrpsee-core = "0.22"
45-
jsonrpsee-client-transport = { version = "0.22", features = ["ws"] }
45+
jsonrpsee-client-transport = { version = "0.22", features = [ "ws" ] }
4646
jsonrpsee-ws-client = { version = "0.22", default-features = false }
4747
sublime_fuzzy = "0.7"
4848
clap_complete = "4"
49-
clap = { version = "4.5", features = ["derive", "env"] }
49+
clap = { version = "4.5", features = [ "derive", "env" ] }
5050
anyhow = "1.0"
51-
tauri-bundler = { version = "2.0.1-beta.15", default-features = false, path = "../bundler" }
51+
tauri-bundler = { version = "2.0.1-beta.16", default-features = false, path = "../bundler" }
5252
colored = "2.1"
53-
serde = { version = "1.0", features = ["derive"] }
54-
serde_json = { version = "1.0", features = ["preserve_order"] }
53+
serde = { version = "1.0", features = [ "derive" ] }
54+
serde_json = { version = "1.0", features = [ "preserve_order" ] }
5555
notify = "6.1"
5656
notify-debouncer-mini = "0.4"
5757
shared_child = "1.0"
5858
duct = "0.13"
59-
toml_edit = { version = "0.22", features = ["serde"] }
59+
toml_edit = { version = "0.22", features = [ "serde" ] }
6060
json-patch = "1.2"
61-
tauri-utils = { version = "2.0.0-beta.17", path = "../../core/tauri-utils", features = [
62-
"isolation",
63-
"schema",
64-
"config-json5",
65-
"config-toml",
66-
] }
67-
tauri-utils-v1 = { version = "1", package = "tauri-utils", features = [
68-
"isolation",
69-
"schema",
70-
"config-json5",
71-
"config-toml",
72-
] }
61+
tauri-utils = { version = "2.0.0-beta.17", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
62+
tauri-utils-v1 = { version = "1", package = "tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
7363
toml = "0.8"
7464
jsonschema = "0.17"
7565
handlebars = "5.1"
7666
include_dir = "0.7"
7767
minisign = "=0.7.3"
7868
base64 = "0.22.0"
79-
ureq = { version = "2.9.6", default-features = false, features = ["gzip"] }
69+
ureq = { version = "2.9.6", default-features = false, features = [ "gzip" ] }
8070
os_info = "3"
8171
semver = "1.0"
8272
regex = "1.10.3"
8373
heck = "0.5"
8474
dialoguer = "0.11"
85-
url = { version = "2.5", features = ["serde"] }
75+
url = { version = "2.5", features = [ "serde" ] }
8676
os_pipe = "1"
8777
ignore = "0.4"
8878
ctrlc = "3.4"
89-
log = { version = "0.4.21", features = ["kv", "kv_std"] }
79+
log = { version = "0.4.21", features = [ "kv", "kv_std" ] }
9080
env_logger = "0.11.3"
9181
icns = { package = "tauri-icns", version = "0.1" }
92-
image = { version = "0.24", default-features = false, features = ["ico"] }
93-
axum = { version = "0.7.4", features = ["ws"] }
82+
image = { version = "0.24", default-features = false, features = [ "ico" ] }
83+
axum = { version = "0.7.4", features = [ "ws" ] }
9484
html5ever = "0.26"
9585
kuchiki = { package = "kuchikiki", version = "0.8" }
96-
tokio = { version = "1", features = ["macros", "sync"] }
86+
tokio = { version = "1", features = [ "macros", "sync" ] }
9787
common-path = "1"
9888
serde-value = "0.7.0"
9989
itertools = "0.12"
@@ -108,7 +98,7 @@ version = "0.52"
10898
features = [
10999
"Win32_Storage_FileSystem",
110100
"Win32_System_IO",
111-
"Win32_System_Console",
101+
"Win32_System_Console"
112102
]
113103

114104
[target."cfg(unix)".dependencies]
@@ -118,14 +108,14 @@ libc = "0.2"
118108
plist = "1"
119109

120110
[features]
121-
default = ["rustls"]
111+
default = [ "rustls" ]
122112
native-tls = [
123113
"tauri-bundler/native-tls",
124114
"cargo-mobile2/native-tls",
125-
"ureq/native-tls",
115+
"ureq/native-tls"
126116
]
127-
native-tls-vendored = ["native-tls", "tauri-bundler/native-tls-vendored"]
128-
rustls = ["tauri-bundler/rustls", "cargo-mobile2/rustls", "ureq/tls"]
117+
native-tls-vendored = [ "native-tls", "tauri-bundler/native-tls-vendored" ]
118+
rustls = [ "tauri-bundler/rustls", "cargo-mobile2/rustls", "ureq/tls" ]
129119

130120
[profile.dev.package.miniz_oxide]
131121
opt-level = 3

tooling/cli/metadata-v2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"cli.js": {
3-
"version": "2.0.0-beta.19",
3+
"version": "2.0.0-beta.20",
44
"node": ">= 10.0.0"
55
},
66
"tauri": "2.0.0-beta.22",

tooling/cli/node/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[2.0.0-beta.20]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[2.0.0-beta.19]
410

511
### New Features

tooling/cli/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/cli",
3-
"version": "2.0.0-beta.19",
3+
"version": "2.0.0-beta.20",
44
"description": "Command line interface for building Tauri apps",
55
"funding": {
66
"type": "opencollective",

0 commit comments

Comments
 (0)