浏览代码

chore: bump tauri-utils dependency versions

Lucas Nogueira 9 月之前
父节点
当前提交
7a1a3276c4

+ 6 - 6
Cargo.lock

@@ -8881,7 +8881,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-build"
-version = "2.0.1"
+version = "2.0.2"
 dependencies = [
  "anyhow",
  "cargo_toml",
@@ -9037,7 +9037,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-codegen"
-version = "2.0.1"
+version = "2.0.2"
 dependencies = [
  "base64 0.22.1",
  "brotli",
@@ -9121,7 +9121,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-macros"
-version = "2.0.1"
+version = "2.0.2"
 dependencies = [
  "heck 0.5.0",
  "proc-macro2",
@@ -9150,7 +9150,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-plugin"
-version = "2.0.1"
+version = "2.0.2"
 dependencies = [
  "anyhow",
  "glob",
@@ -9192,13 +9192,13 @@ dependencies = [
  "log",
  "serde",
  "tauri",
- "tauri-plugin 2.0.1",
+ "tauri-plugin 2.0.2",
  "thiserror",
 ]
 
 [[package]]
 name = "tauri-runtime"
-version = "2.1.0"
+version = "2.1.1"
 dependencies = [
  "dpi",
  "gtk",

+ 6 - 0
crates/tauri-build/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[2.0.2]
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.2`
+
 ## \[2.0.1]
 
 ### What's Changed

+ 3 - 3
crates/tauri-build/Cargo.toml

@@ -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"
@@ -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",
 ] }

+ 1 - 1
crates/tauri-bundler/Cargo.toml

@@ -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"

+ 1 - 1
crates/tauri-cli/Cargo.toml

@@ -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",

+ 6 - 0
crates/tauri-codegen/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[2.0.2]
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.2`
+
 ## \[2.0.1]
 
 ### What's Changed

+ 2 - 2
crates/tauri-codegen/Cargo.toml

@@ -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"
@@ -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"

+ 3 - 3
crates/tauri-macros/Cargo.toml

@@ -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"
@@ -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 = []

+ 6 - 0
crates/tauri-plugin/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[2.0.2]
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.2`
+
 ## \[2.0.1]
 
 ### What's Changed

+ 2 - 2
crates/tauri-plugin/Cargo.toml

@@ -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
@@ -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 }

+ 6 - 0
crates/tauri-runtime/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[2.1.1]
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.2`
+
 ## \[2.1.0]
 
 ### Bug Fixes

+ 2 - 2
crates/tauri-runtime/Cargo.toml

@@ -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"
@@ -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" }

+ 4 - 4
crates/tauri/Cargo.toml

@@ -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"
@@ -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",
 ] }