Skip to content

Commit 089939b

Browse files
Apply Version Updates From Current Changes (v1) (#12203)
Co-authored-by: FabianLars <[email protected]>
1 parent ac83bf4 commit 089939b

24 files changed

+105
-43
lines changed

.changes/enhance-resource-dir-linux.md

-5
This file was deleted.

Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/tauri-build/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## \[1.5.6]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[1.5.5]
411

512
### Bug Fixes

core/tauri-build/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-build"
3-
version = "1.5.5"
3+
version = "1.5.6"
44
authors = [ "Tauri Programme within The Commons Conservancy" ]
55
categories = [ "gui", "web-programming" ]
66
license = "Apache-2.0 OR MIT"
@@ -23,8 +23,8 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
2323
[dependencies]
2424
anyhow = "1"
2525
quote = { version = "1", optional = true }
26-
tauri-codegen = { version = "1.4.5", path = "../tauri-codegen", optional = true }
27-
tauri-utils = { version = "1.6.1", path = "../tauri-utils", features = [ "build", "resources" ] }
26+
tauri-codegen = { version = "1.4.6", path = "../tauri-codegen", optional = true }
27+
tauri-utils = { version = "1.6.2", path = "../tauri-utils", features = [ "build", "resources" ] }
2828
cargo_toml = "0.15"
2929
serde = "1"
3030
serde_json = "1"

core/tauri-codegen/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[1.4.6]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[1.4.5]
410

511
### Enhancements

core/tauri-codegen/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-codegen"
3-
version = "1.4.5"
3+
version = "1.4.6"
44
authors = [ "Tauri Programme within The Commons Conservancy" ]
55
categories = [ "gui", "web-programming" ]
66
license = "Apache-2.0 OR MIT"
@@ -19,7 +19,7 @@ proc-macro2 = "1"
1919
quote = "1"
2020
serde = { version = "1", features = [ "derive" ] }
2121
serde_json = "1"
22-
tauri-utils = { version = "1.6.1", path = "../tauri-utils", features = [ "build" ] }
22+
tauri-utils = { version = "1.6.2", path = "../tauri-utils", features = [ "build" ] }
2323
thiserror = "1"
2424
walkdir = "2"
2525
brotli = { version = "7", optional = true }

core/tauri-macros/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## \[1.4.7]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[1.4.6]
411

512
### Dependencies

core/tauri-macros/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-macros"
3-
version = "1.4.6"
3+
version = "1.4.7"
44
authors = [ "Tauri Programme within The Commons Conservancy" ]
55
categories = [ "gui", "os", "filesystem", "web-programming" ]
66
license = "Apache-2.0 OR MIT"
@@ -20,8 +20,8 @@ proc-macro2 = { version = "1", features = [ "span-locations" ] }
2020
quote = "1"
2121
syn = { version = "1", features = [ "full" ] }
2222
heck = "0.5"
23-
tauri-codegen = { version = "1.4.5", default-features = false, path = "../tauri-codegen" }
24-
tauri-utils = { version = "1.6.1", path = "../tauri-utils" }
23+
tauri-codegen = { version = "1.4.6", default-features = false, path = "../tauri-codegen" }
24+
tauri-utils = { version = "1.6.2", path = "../tauri-utils" }
2525

2626
[features]
2727
custom-protocol = [ ]

core/tauri-runtime-wry/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## \[0.14.11]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[0.14.10]
411

512
### Bug Fixes

core/tauri-runtime-wry/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-runtime-wry"
3-
version = "0.14.10"
3+
version = "0.14.11"
44
authors = [ "Tauri Programme within The Commons Conservancy" ]
55
categories = [ "gui", "web-programming" ]
66
license = "Apache-2.0 OR MIT"
@@ -14,8 +14,8 @@ readme = "README.md"
1414

1515
[dependencies]
1616
wry = { version = "0.24.10", default-features = false, features = [ "file-drop", "protocol" ] }
17-
tauri-runtime = { version = "0.14.5", path = "../tauri-runtime" }
18-
tauri-utils = { version = "1.6.1", path = "../tauri-utils" }
17+
tauri-runtime = { version = "0.14.6", path = "../tauri-runtime" }
18+
tauri-utils = { version = "1.6.2", path = "../tauri-utils" }
1919
uuid = { version = "1", features = [ "v4" ] }
2020
rand = "0.8"
2121
raw-window-handle = "0.5"

core/tauri-runtime/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[0.14.6]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[0.14.5]
410

511
### What's Changed

core/tauri-runtime/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-runtime"
3-
version = "0.14.5"
3+
version = "0.14.6"
44
authors = [ "Tauri Programme within The Commons Conservancy" ]
55
categories = [ "gui", "web-programming" ]
66
license = "Apache-2.0 OR MIT"
@@ -30,7 +30,7 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
3030
serde = { version = "1", features = [ "derive" ] }
3131
serde_json = "1"
3232
thiserror = "1"
33-
tauri-utils = { version = "1.6.1", path = "../tauri-utils" }
33+
tauri-utils = { version = "1.6.2", path = "../tauri-utils" }
3434
uuid = { version = "1", features = [ "v4" ] }
3535
http = "0.2"
3636
http-range = "0.1"

core/tauri-utils/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[1.6.2]
4+
5+
### Bug Fixes
6+
7+
- [`a3584c143`](https://www.github.com/tauri-apps/tauri/commit/a3584c143eab10b8fa47b82ecbd9032d839fd9de) ([#11960](https://www.github.com/tauri-apps/tauri/pull/11960) by [@MarielaSassi](https://www.github.com/tauri-apps/tauri/../../MarielaSassi)) Enhance resource directory resolution to support running on distros like NixOS.
8+
39
## \[1.6.1]
410

511
### New Features

core/tauri-utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-utils"
3-
version = "1.6.1"
3+
version = "1.6.2"
44
authors = [ "Tauri Programme within The Commons Conservancy" ]
55
license = "Apache-2.0 OR MIT"
66
homepage = "https://tauri.app"

core/tauri/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## \[1.8.2]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
- Upgraded to `[email protected]`
10+
- Upgraded to `[email protected]`
11+
312
## \[1.8.1]
413

514
### Bug Fixes

core/tauri/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT"
1010
name = "tauri"
1111
readme = "README.md"
1212
repository = "https://github.com/tauri-apps/tauri"
13-
version = "1.8.1"
13+
version = "1.8.2"
1414

1515
[package.metadata.docs.rs]
1616
no-default-features = true
@@ -62,10 +62,10 @@ url = { version = "2" }
6262
anyhow = "1.0"
6363
thiserror = "1.0"
6464
once_cell = "1"
65-
tauri-runtime = { version = "0.14.5", path = "../tauri-runtime" }
66-
tauri-macros = { version = "1.4.6", path = "../tauri-macros" }
67-
tauri-utils = { version = "1.6.1", features = [ "resources" ], path = "../tauri-utils" }
68-
tauri-runtime-wry = { version = "0.14.10", path = "../tauri-runtime-wry", optional = true }
65+
tauri-runtime = { version = "0.14.6", path = "../tauri-runtime" }
66+
tauri-macros = { version = "1.4.7", path = "../tauri-macros" }
67+
tauri-utils = { version = "1.6.2", features = [ "resources" ], path = "../tauri-utils" }
68+
tauri-runtime-wry = { version = "0.14.11", path = "../tauri-runtime-wry", optional = true }
6969
rand = "0.8"
7070
semver = { version = "1", features = [ "serde" ] }
7171
serde_repr = "0.1"

tooling/bundler/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[1.7.3]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[1.7.2]
410

511
### Bug Fixes

tooling/bundler/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ workspace = { }
22

33
[package]
44
name = "tauri-bundler"
5-
version = "1.7.2"
5+
version = "1.7.3"
66
authors = [
77
"George Burton <[email protected]>",
88
"Tauri Programme within The Commons Conservancy"
@@ -17,7 +17,7 @@ rust-version = "1.71"
1717
exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ]
1818

1919
[dependencies]
20-
tauri-utils = { version = "1.6.1", path = "../../core/tauri-utils", features = [ "resources" ] }
20+
tauri-utils = { version = "1.6.2", path = "../../core/tauri-utils", features = [ "resources" ] }
2121
image = "0.25"
2222
flate2 = "1.0"
2323
anyhow = "1.0"

tooling/cli/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## \[1.6.5]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[1.6.4]
411

512
### Bug Fixes

tooling/cli/Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tooling/cli/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = [ "node" ]
33

44
[package]
55
name = "tauri-cli"
6-
version = "1.6.4"
6+
version = "1.6.5"
77
authors = [ "Tauri Programme within The Commons Conservancy" ]
88
edition = "2021"
99
rust-version = "1.71"
@@ -42,7 +42,7 @@ path = "src/main.rs"
4242
clap_complete = "4"
4343
clap = { version = "4.4", features = [ "derive" ] }
4444
anyhow = "1.0"
45-
tauri-bundler = { version = "1.7.2", path = "../bundler", default-features = false }
45+
tauri-bundler = { version = "1.7.3", path = "../bundler", default-features = false }
4646
colored = "2.0"
4747
once_cell = "1"
4848
serde = { version = "1.0", features = [ "derive" ] }
@@ -52,7 +52,7 @@ notify-debouncer-mini = "0.4"
5252
shared_child = "1.0"
5353
toml_edit = "0.22"
5454
json-patch = "2"
55-
tauri-utils = { version = "1.6.1", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
55+
tauri-utils = { version = "1.6.2", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
5656
toml = "0.8"
5757
jsonschema = { version = "0.18", default-features = false }
5858
handlebars = "4.4"

tooling/cli/metadata.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"cli.js": {
3-
"version": "1.6.4",
3+
"version": "1.6.5",
44
"node": ">= 10.0.0"
55
},
6-
"tauri": "1.8.1",
7-
"tauri-build": "1.5.5"
6+
"tauri": "1.8.2",
7+
"tauri-build": "1.5.6"
88
}

0 commit comments

Comments
 (0)