Skip to content

Commit

Permalink
chore: bump tauri-utils dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Oct 21, 2024
1 parent 8ca0e4d commit 7a1a327
Show file tree
Hide file tree
Showing 13 changed files with 48 additions and 24 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions crates/tauri-build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.2]

### Dependencies

- Upgraded to `tauri-utils@2.0.2`

## \[2.0.1]

### What's Changed
Expand Down
6 changes: 3 additions & 3 deletions crates/tauri-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "2.0.1"
version = "2.0.2"
description = "build time code to pair with https://crates.io/crates/tauri"
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"
Expand Down Expand Up @@ -28,8 +28,8 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
anyhow = "1"
quote = { version = "1", optional = true }
tauri-codegen = { version = "2.0.1", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.1", path = "../tauri-utils", features = [
tauri-codegen = { version = "2.0.2", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.2", path = "../tauri-utils", features = [
"build",
"resources",
] }
Expand Down
2 changes: 1 addition & 1 deletion crates/tauri-bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rust-version = "1.77.2"
exclude = ["CHANGELOG.md", "/target", "rustfmt.toml"]

[dependencies]
tauri-utils = { version = "2.0.1", path = "../tauri-utils", features = [
tauri-utils = { version = "2.0.2", path = "../tauri-utils", features = [
"resources",
] }
image = "0.25.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/tauri-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ shared_child = "1.0"
duct = "0.13"
toml_edit = { version = "0.22", features = ["serde"] }
json-patch = "2.0"
tauri-utils = { version = "2.0.1", path = "../tauri-utils", features = [
tauri-utils = { version = "2.0.2", path = "../tauri-utils", features = [
"isolation",
"schema",
"config-json5",
Expand Down
6 changes: 6 additions & 0 deletions crates/tauri-codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.2]

### Dependencies

- Upgraded to `tauri-utils@2.0.2`

## \[2.0.1]

### What's Changed
Expand Down
4 changes: 2 additions & 2 deletions crates/tauri-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "2.0.1"
version = "2.0.2"
description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"
Expand All @@ -20,7 +20,7 @@ quote = "1"
syn = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tauri-utils = { version = "2.0.1", path = "../tauri-utils", features = [
tauri-utils = { version = "2.0.2", path = "../tauri-utils", features = [
"build",
] }
thiserror = "1"
Expand Down
6 changes: 3 additions & 3 deletions crates/tauri-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "2.0.1"
version = "2.0.2"
description = "Macros for the tauri crate."
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"
Expand All @@ -20,8 +20,8 @@ proc-macro2 = { version = "1", features = ["span-locations"] }
quote = "1"
syn = { version = "2", features = ["full"] }
heck = "0.5"
tauri-codegen = { version = "2.0.1", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.0.1", path = "../tauri-utils" }
tauri-codegen = { version = "2.0.2", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.0.2", path = "../tauri-utils" }

[features]
custom-protocol = []
Expand Down
6 changes: 6 additions & 0 deletions crates/tauri-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.2]

### Dependencies

- Upgraded to `tauri-utils@2.0.2`

## \[2.0.1]

### What's Changed
Expand Down
4 changes: 2 additions & 2 deletions crates/tauri-plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin"
version = "2.0.1"
version = "2.0.2"
description = "Build script and runtime Tauri plugin definitions"
authors.workspace = true
homepage.workspace = true
Expand Down Expand Up @@ -30,7 +30,7 @@ runtime = []
[dependencies]
anyhow = { version = "1", optional = true }
serde = { version = "1", optional = true }
tauri-utils = { version = "2.0.1", default-features = false, features = [
tauri-utils = { version = "2.0.2", default-features = false, features = [
"build",
], path = "../tauri-utils" }
serde_json = { version = "1", optional = true }
Expand Down
6 changes: 6 additions & 0 deletions crates/tauri-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.1.1]

### Dependencies

- Upgraded to `tauri-utils@2.0.2`

## \[2.1.0]

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions crates/tauri-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime"
version = "2.1.0"
version = "2.1.1"
description = "Runtime for Tauri applications"
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"
Expand Down Expand Up @@ -29,7 +29,7 @@ targets = [
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
tauri-utils = { version = "2.0.1", path = "../tauri-utils" }
tauri-utils = { version = "2.0.2", path = "../tauri-utils" }
http = "1.1"
raw-window-handle = "0.6"
url = { version = "2" }
Expand Down
8 changes: 4 additions & 4 deletions crates/tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ uuid = { version = "1", features = ["v4"], optional = true }
url = "2"
anyhow = "1.0"
thiserror = "1.0"
tauri-runtime = { version = "2.1.0", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.1", path = "../tauri-macros" }
tauri-runtime = { version = "2.1.1", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.2", path = "../tauri-macros" }
tauri-utils = { version = "2.0.2", features = [
"resources",
], path = "../tauri-utils" }
tauri-runtime-wry = { version = "2.1.1", path = "../tauri-runtime-wry", optional = true }
tauri-runtime-wry = { version = "2.1.2", path = "../tauri-runtime-wry", optional = true }
getrandom = "0.2"
serde_repr = "0.1"
http = "1.1"
Expand Down Expand Up @@ -134,7 +134,7 @@ swift-rs = "1.0.7"

[build-dependencies]
heck = "0.5"
tauri-build = { path = "../tauri-build/", default-features = false, version = "2.0.1" }
tauri-build = { path = "../tauri-build/", default-features = false, version = "2.0.2" }
tauri-utils = { path = "../tauri-utils/", version = "2.0.2", features = [
"build",
] }
Expand Down

0 comments on commit 7a1a327

Please sign in to comment.