浏览代码

chore(changes): add changes for 1.3 release merge

Lucas Nogueira 2 年之前
父节点
当前提交
e9482430ff

+ 10 - 0
.changes/bump-1.3.md

@@ -0,0 +1,10 @@
+---
+"tauri-bundler": patch
+"tauri-codegen": patch
+"tauri-macros": patch
+"tauri-utils": patch
+"tauri-runtime": patch
+"tauri-runtime-wry": patch
+---
+
+Pull changes from Tauri 1.3 release.

+ 1 - 0
.changes/pre.json

@@ -4,6 +4,7 @@
     ".changes/add-mobile-to-plugin.md",
     ".changes/android-apis-runtime.md",
     ".changes/build-android-env-vars.md",
+    ".changes/bump-1.3.md",
     ".changes/cli-android-build.md",
     ".changes/cli-dev-server-port.md",
     ".changes/cli-ios-build.md",

+ 2 - 2
core/tauri-build/Cargo.toml

@@ -19,8 +19,8 @@ rustdoc-args = [ "--cfg", "doc_cfg" ]
 [dependencies]
 anyhow = "1"
 quote = { version = "1", optional = true }
-tauri-codegen = { version = "2.0.0-alpha.2", path = "../tauri-codegen", optional = true }
-tauri-utils = { version = "2.0.0-alpha.2", path = "../tauri-utils", features = [ "build", "resources" ] }
+tauri-codegen = { version = "2.0.0-alpha.3", path = "../tauri-codegen", optional = true }
+tauri-utils = { version = "2.0.0-alpha.3", path = "../tauri-utils", features = [ "build", "resources" ] }
 cargo_toml = "0.14"
 serde = "1"
 serde_json = "1"

+ 5 - 0
core/tauri-codegen/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[2.0.0-alpha.3]
+
+- Pull changes from Tauri 1.3 release.
+  - [](https://www.github.com/tauri-apps/tauri/commit/undefined)  on undefined
+
 ## \[2.0.0-alpha.2]
 
 - Return `bool` in the invoke handler.

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

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-codegen"
-version = "2.0.0-alpha.2"
+version = "2.0.0-alpha.3"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 categories = [ "gui", "web-programming" ]
 license = "Apache-2.0 OR MIT"
@@ -19,7 +19,7 @@ proc-macro2 = "1"
 quote = "1"
 serde = { version = "1", features = [ "derive" ] }
 serde_json = "1"
-tauri-utils = { version = "2.0.0-alpha.2", path = "../tauri-utils", features = [ "build" ] }
+tauri-utils = { version = "2.0.0-alpha.3", path = "../tauri-utils", features = [ "build" ] }
 thiserror = "1"
 walkdir = "2"
 brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }

+ 5 - 0
core/tauri-macros/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[2.0.0-alpha.3]
+
+- Pull changes from Tauri 1.3 release.
+  - [](https://www.github.com/tauri-apps/tauri/commit/undefined)  on undefined
+
 ## \[2.0.0-alpha.2]
 
 - Resolve Android package name from single word bundle identifiers.

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

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-macros"
-version = "2.0.0-alpha.2"
+version = "2.0.0-alpha.3"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 categories = [ "gui", "os", "filesystem", "web-programming" ]
 license = "Apache-2.0 OR MIT"
@@ -20,8 +20,8 @@ proc-macro2 = "1"
 quote = "1"
 syn = { version = "1", features = [ "full" ] }
 heck = "0.4"
-tauri-codegen = { version = "2.0.0-alpha.2", default-features = false, path = "../tauri-codegen" }
-tauri-utils = { version = "2.0.0-alpha.2", path = "../tauri-utils" }
+tauri-codegen = { version = "2.0.0-alpha.3", default-features = false, path = "../tauri-codegen" }
+tauri-utils = { version = "2.0.0-alpha.3", path = "../tauri-utils" }
 
 [features]
 custom-protocol = [ ]

+ 5 - 0
core/tauri-runtime-wry/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[0.13.0-alpha.3]
+
+- Pull changes from Tauri 1.3 release.
+  - [](https://www.github.com/tauri-apps/tauri/commit/undefined)  on undefined
+
 ## \[0.13.0-alpha.2]
 
 - Add `find_class`, `run_on_android_context` on `RuntimeHandle`.

+ 3 - 3
core/tauri-runtime-wry/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-runtime-wry"
-version = "0.13.0-alpha.2"
+version = "0.13.0-alpha.3"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 categories = [ "gui", "web-programming" ]
 license = "Apache-2.0 OR MIT"
@@ -14,8 +14,8 @@ readme = "README.md"
 
 [dependencies]
 wry = { version = "0.27", default-features = false, features = [ "file-drop", "protocol" ] }
-tauri-runtime = { version = "0.13.0-alpha.2", path = "../tauri-runtime" }
-tauri-utils = { version = "2.0.0-alpha.2", path = "../tauri-utils" }
+tauri-runtime = { version = "0.13.0-alpha.3", path = "../tauri-runtime" }
+tauri-utils = { version = "2.0.0-alpha.3", path = "../tauri-utils" }
 uuid = { version = "1", features = [ "v4" ] }
 rand = "0.8"
 raw-window-handle = "0.5"

+ 5 - 0
core/tauri-runtime/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[0.13.0-alpha.3]
+
+- Pull changes from Tauri 1.3 release.
+  - [](https://www.github.com/tauri-apps/tauri/commit/undefined)  on undefined
+
 ## \[0.13.0-alpha.2]
 
 - Add `find_class`, `run_on_android_context` on `RuntimeHandle`.

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

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-runtime"
-version = "0.13.0-alpha.2"
+version = "0.13.0-alpha.3"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 categories = [ "gui", "web-programming" ]
 license = "Apache-2.0 OR MIT"
@@ -26,7 +26,7 @@ targets = [
 serde = { version = "1.0", features = [ "derive" ] }
 serde_json = "1.0"
 thiserror = "1.0"
-tauri-utils = { version = "2.0.0-alpha.2", path = "../tauri-utils" }
+tauri-utils = { version = "2.0.0-alpha.3", path = "../tauri-utils" }
 uuid = { version = "1", features = [ "v4" ] }
 http = "0.2.4"
 http-range = "0.1.4"

+ 5 - 0
core/tauri-utils/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[2.0.0-alpha.3]
+
+- Pull changes from Tauri 1.3 release.
+  - [](https://www.github.com/tauri-apps/tauri/commit/undefined)  on undefined
+
 ## \[2.0.0-alpha.2]
 
 - Added the `shadow` option to the window configuration and `set_shadow` option to the `window` allow list.

+ 1 - 1
core/tauri-utils/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-utils"
-version = "2.0.0-alpha.2"
+version = "2.0.0-alpha.3"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 license = "Apache-2.0 OR MIT"
 homepage = "https://tauri.app"

+ 4 - 4
core/tauri/Cargo.toml

@@ -47,10 +47,10 @@ url = { version = "2.3" }
 anyhow = "1.0"
 thiserror = "1.0"
 once_cell = "1"
-tauri-runtime = { version = "0.13.0-alpha.2", path = "../tauri-runtime" }
-tauri-macros = { version = "2.0.0-alpha.2", path = "../tauri-macros" }
-tauri-utils = { version = "2.0.0-alpha.2", features = [ "resources" ], path = "../tauri-utils" }
-tauri-runtime-wry = { version = "0.13.0-alpha.2", path = "../tauri-runtime-wry", optional = true }
+tauri-runtime = { version = "0.13.0-alpha.3", path = "../tauri-runtime" }
+tauri-macros = { version = "2.0.0-alpha.3", path = "../tauri-macros" }
+tauri-utils = { version = "2.0.0-alpha.3", features = [ "resources" ], path = "../tauri-utils" }
+tauri-runtime-wry = { version = "0.13.0-alpha.3", path = "../tauri-runtime-wry", optional = true }
 rand = "0.8"
 semver = { version = "1.0", features = [ "serde" ] }
 serde_repr = "0.1"

+ 5 - 0
tooling/bundler/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[2.0.0-alpha.3]
+
+- Pull changes from Tauri 1.3 release.
+  - [](https://www.github.com/tauri-apps/tauri/commit/undefined)  on undefined
+
 ## \[2.0.0-alpha.2]
 
 - Added the `shadow` option to the window configuration and `set_shadow` option to the `window` allow list.

+ 2 - 2
tooling/bundler/Cargo.toml

@@ -2,7 +2,7 @@ workspace = { }
 
 [package]
 name = "tauri-bundler"
-version = "2.0.0-alpha.2"
+version = "2.0.0-alpha.3"
 authors = [
   "George Burton <burtonageo@gmail.com>",
   "Tauri Programme within The Commons Conservancy"
@@ -17,7 +17,7 @@ rust-version = "1.64"
 exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ]
 
 [dependencies]
-tauri-utils = { version = "2.0.0-alpha.2", path = "../../core/tauri-utils", features = [ "resources" ] }
+tauri-utils = { version = "2.0.0-alpha.3", path = "../../core/tauri-utils", features = [ "resources" ] }
 image = "0.24.5"
 libflate = "1.2"
 anyhow = "1.0"

+ 3 - 3
tooling/cli/Cargo.lock

@@ -3650,7 +3650,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-bundler"
-version = "2.0.0-alpha.2"
+version = "2.0.0-alpha.3"
 dependencies = [
  "anyhow",
  "ar",
@@ -3689,7 +3689,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-cli"
-version = "2.0.0-alpha.6"
+version = "2.0.0-alpha.7"
 dependencies = [
  "anyhow",
  "axum",
@@ -3811,7 +3811,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-utils"
-version = "2.0.0-alpha.2"
+version = "2.0.0-alpha.3"
 dependencies = [
  "aes-gcm",
  "ctor",

+ 2 - 2
tooling/cli/Cargo.toml

@@ -52,7 +52,7 @@ thiserror = "1"
 sublime_fuzzy = "0.7"
 clap = { version = "4.0", features = [ "derive" ] }
 anyhow = "1.0"
-tauri-bundler = { version = "2.0.0-alpha.2", path = "../bundler" }
+tauri-bundler = { version = "2.0.0-alpha.3", path = "../bundler" }
 colored = "2.0"
 once_cell = "1"
 serde = { version = "1.0", features = [ "derive" ] }
@@ -62,7 +62,7 @@ notify-debouncer-mini = "0.2"
 shared_child = "1.0"
 toml_edit = "0.14"
 json-patch = "0.2"
-tauri-utils = { version = "2.0.0-alpha.2", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
+tauri-utils = { version = "2.0.0-alpha.3", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
 toml = "0.5"
 jsonschema = "0.16"
 handlebars = "4.3"