diff --git a/.changes/enhance-download-bootstrapper.md b/.changes/enhance-download-bootstrapper.md deleted file mode 100644 index 3f592f880..000000000 --- a/.changes/enhance-download-bootstrapper.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri-bundler": patch ---- - -Enhance the `DownloadedBootstrapper` Webview2 install mode compatibility with Windows 8. diff --git a/.changes/expose-windows-version.md b/.changes/expose-windows-version.md deleted file mode 100644 index fa0b53962..000000000 --- a/.changes/expose-windows-version.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri-utils": patch ---- - -Expose `platform::windows_version` function. diff --git a/.changes/fix-deadlock-file-drop.md b/.changes/fix-deadlock-file-drop.md deleted file mode 100644 index ad5320e90..000000000 --- a/.changes/fix-deadlock-file-drop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri-runtime-wry": patch ---- - -Fixes a deadlock on the file drop handler. diff --git a/.changes/fix-local-url-check.md b/.changes/fix-local-url-check.md deleted file mode 100644 index 8132fe05a..000000000 --- a/.changes/fix-local-url-check.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri": patch ---- - -Fixes check for local URL when an external URL is provided to the window and it is based on the configured devPath. diff --git a/.changes/fix-macos-theme-getter.md b/.changes/fix-macos-theme-getter.md deleted file mode 100644 index 47dd2da75..000000000 --- a/.changes/fix-macos-theme-getter.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri-runtime-wry": patch ---- - -Send theme value only once on the getter function implementation on macOS. diff --git a/.changes/fix-signer-cmd.md b/.changes/fix-signer-cmd.md deleted file mode 100644 index 32fbd91ed..000000000 --- a/.changes/fix-signer-cmd.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"cli.rs": patch -"cli.js": patch ---- - -Fixes a crash on the `signer sign` command. diff --git a/.changes/fix-webview-event-handler.md b/.changes/fix-webview-event-handler.md deleted file mode 100644 index 64131aa47..000000000 --- a/.changes/fix-webview-event-handler.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri-runtime-wry": patch ---- - -Fixes a deadlock when the window focus change on Windows. diff --git a/core/tauri-build/CHANGELOG.md b/core/tauri-build/CHANGELOG.md index e9849a58a..114cf017f 100644 --- a/core/tauri-build/CHANGELOG.md +++ b/core/tauri-build/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.0.2] + +- Expose `platform::windows_version` function. + - Bumped due to a bump in tauri-utils. + - [bf764e83](https://www.github.com/tauri-apps/tauri/commit/bf764e83e01e7443e6cc54572001e1c98c357465) feat(utils): expose `windows_version` function ([#4534](https://www.github.com/tauri-apps/tauri/pull/4534)) on 2022-06-30 + ## \[1.0.1] - Changed the `BundleConfig::targets` to a `BundleTarget` enum to enhance generated documentation. diff --git a/core/tauri-build/Cargo.toml b/core/tauri-build/Cargo.toml index ee7e9cd6a..8483e3916 100644 --- a/core/tauri-build/Cargo.toml +++ b/core/tauri-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-build" -version = "1.0.1" +version = "1.0.2" authors = [ "Tauri Programme within The Commons Conservancy" ] categories = [ "gui", "web-programming" ] license = "Apache-2.0 OR MIT" @@ -19,8 +19,8 @@ rustdoc-args = [ "--cfg", "doc_cfg" ] [dependencies] anyhow = "1" quote = { version = "1", optional = true } -tauri-codegen = { version = "1.0.1", path = "../tauri-codegen", optional = true } -tauri-utils = { version = "1.0.1", path = "../tauri-utils", features = [ "build", "resources" ] } +tauri-codegen = { version = "1.0.2", path = "../tauri-codegen", optional = true } +tauri-utils = { version = "1.0.2", path = "../tauri-utils", features = [ "build", "resources" ] } cargo_toml = "0.11" serde_json = "1" heck = "0.4" diff --git a/core/tauri-codegen/CHANGELOG.md b/core/tauri-codegen/CHANGELOG.md index 46bb7e2e0..30d9dd4e8 100644 --- a/core/tauri-codegen/CHANGELOG.md +++ b/core/tauri-codegen/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.0.2] + +- Expose `platform::windows_version` function. + - Bumped due to a bump in tauri-utils. + - [bf764e83](https://www.github.com/tauri-apps/tauri/commit/bf764e83e01e7443e6cc54572001e1c98c357465) feat(utils): expose `windows_version` function ([#4534](https://www.github.com/tauri-apps/tauri/pull/4534)) on 2022-06-30 + ## \[1.0.1] - Set the bundle name and app metadata in the Info.plist file in development mode. diff --git a/core/tauri-codegen/Cargo.toml b/core/tauri-codegen/Cargo.toml index bf26efb0c..7d107982f 100644 --- a/core/tauri-codegen/Cargo.toml +++ b/core/tauri-codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-codegen" -version = "1.0.1" +version = "1.0.2" 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 = "1.0.1", path = "../tauri-utils", features = [ "build" ] } +tauri-utils = { version = "1.0.2", path = "../tauri-utils", features = [ "build" ] } thiserror = "1" walkdir = "2" brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] } diff --git a/core/tauri-macros/CHANGELOG.md b/core/tauri-macros/CHANGELOG.md index e46c1d97e..e069b2ddc 100644 --- a/core/tauri-macros/CHANGELOG.md +++ b/core/tauri-macros/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.0.2] + +- Expose `platform::windows_version` function. + - Bumped due to a bump in tauri-utils. + - [bf764e83](https://www.github.com/tauri-apps/tauri/commit/bf764e83e01e7443e6cc54572001e1c98c357465) feat(utils): expose `windows_version` function ([#4534](https://www.github.com/tauri-apps/tauri/pull/4534)) on 2022-06-30 + ## \[1.0.1] - Set the bundle name and app metadata in the Info.plist file in development mode. diff --git a/core/tauri-macros/Cargo.toml b/core/tauri-macros/Cargo.toml index 8ff7b2e4a..816b71c64 100644 --- a/core/tauri-macros/Cargo.toml +++ b/core/tauri-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-macros" -version = "1.0.1" +version = "1.0.2" 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 = "1.0.1", default-features = false, path = "../tauri-codegen" } -tauri-utils = { version = "1.0.1", path = "../tauri-utils" } +tauri-codegen = { version = "1.0.2", default-features = false, path = "../tauri-codegen" } +tauri-utils = { version = "1.0.2", path = "../tauri-utils" } [features] custom-protocol = [ ] diff --git a/core/tauri-runtime-wry/CHANGELOG.md b/core/tauri-runtime-wry/CHANGELOG.md index 13fffdc16..1dce230c5 100644 --- a/core/tauri-runtime-wry/CHANGELOG.md +++ b/core/tauri-runtime-wry/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[0.10.1] + +- Fixes a deadlock on the file drop handler. + - [23a48007](https://www.github.com/tauri-apps/tauri/commit/23a48007c0df7346fa45c76dfaf9235a157f59ec) fix(tauri-runtime-wry): deadlock on file drop, closes [#4527](https://www.github.com/tauri-apps/tauri/pull/4527) ([#4535](https://www.github.com/tauri-apps/tauri/pull/4535)) on 2022-06-30 +- Send theme value only once on the getter function implementation on macOS. + - [63841c10](https://www.github.com/tauri-apps/tauri/commit/63841c10609c3d7337ba6cd68ae126b18987014d) fix(tauri-runtime-wry): do not send theme twice on macOS, closes [#4532](https://www.github.com/tauri-apps/tauri/pull/4532) ([#4540](https://www.github.com/tauri-apps/tauri/pull/4540)) on 2022-06-30 +- Fixes a deadlock when the window focus change on Windows. + - [185b0e31](https://www.github.com/tauri-apps/tauri/commit/185b0e314ece9563cd7c83a16466b2b8b9167eb3) fix(tauri-runtime-wry): deadlock when window focus change, closes [#4533](https://www.github.com/tauri-apps/tauri/pull/4533) ([#4539](https://www.github.com/tauri-apps/tauri/pull/4539)) on 2022-06-30 + ## \[0.10.0] - Implement `raw_window_handle::HasRawWindowHandle` on Linux. diff --git a/core/tauri-runtime-wry/Cargo.toml b/core/tauri-runtime-wry/Cargo.toml index 9363a510e..5c1e63ca2 100644 --- a/core/tauri-runtime-wry/Cargo.toml +++ b/core/tauri-runtime-wry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-runtime-wry" -version = "0.10.0" +version = "0.10.1" 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.19", default-features = false, features = [ "file-drop", "protocol" ] } -tauri-runtime = { version = "0.10.0", path = "../tauri-runtime" } -tauri-utils = { version = "1.0.1", path = "../tauri-utils" } +tauri-runtime = { version = "0.10.1", path = "../tauri-runtime" } +tauri-utils = { version = "1.0.2", path = "../tauri-utils" } uuid = { version = "1", features = [ "v4" ] } rand = "0.8" raw-window-handle = "0.4.3" diff --git a/core/tauri-runtime/CHANGELOG.md b/core/tauri-runtime/CHANGELOG.md index 2655624a1..d3dd6b67d 100644 --- a/core/tauri-runtime/CHANGELOG.md +++ b/core/tauri-runtime/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[0.10.1] + +- Expose `platform::windows_version` function. + - Bumped due to a bump in tauri-utils. + - [bf764e83](https://www.github.com/tauri-apps/tauri/commit/bf764e83e01e7443e6cc54572001e1c98c357465) feat(utils): expose `windows_version` function ([#4534](https://www.github.com/tauri-apps/tauri/pull/4534)) on 2022-06-30 + ## \[0.10.0] - Added `fn new` constructors for `PhysicalSize`, `LogicalSize`, `PhysicalPosition` and `LogicalPosition` and missing conversion methods. diff --git a/core/tauri-runtime/Cargo.toml b/core/tauri-runtime/Cargo.toml index 8beb48324..35fd6ab67 100644 --- a/core/tauri-runtime/Cargo.toml +++ b/core/tauri-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-runtime" -version = "0.10.0" +version = "0.10.1" 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 = "1.0.1", path = "../tauri-utils" } +tauri-utils = { version = "1.0.2", path = "../tauri-utils" } uuid = { version = "1", features = [ "v4" ] } http = "0.2.4" http-range = "0.1.4" diff --git a/core/tauri-utils/CHANGELOG.md b/core/tauri-utils/CHANGELOG.md index a503743f8..7862d52ee 100644 --- a/core/tauri-utils/CHANGELOG.md +++ b/core/tauri-utils/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[1.0.2] + +- Expose `platform::windows_version` function. + - [bf764e83](https://www.github.com/tauri-apps/tauri/commit/bf764e83e01e7443e6cc54572001e1c98c357465) feat(utils): expose `windows_version` function ([#4534](https://www.github.com/tauri-apps/tauri/pull/4534)) on 2022-06-30 + ## \[1.0.1] - Changed the `BundleConfig::targets` to a `BundleTarget` enum to enhance generated documentation. diff --git a/core/tauri-utils/Cargo.toml b/core/tauri-utils/Cargo.toml index 791d81379..5f184a190 100644 --- a/core/tauri-utils/Cargo.toml +++ b/core/tauri-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-utils" -version = "1.0.1" +version = "1.0.2" authors = [ "Tauri Programme within The Commons Conservancy" ] license = "Apache-2.0 OR MIT" homepage = "https://tauri.app" diff --git a/core/tauri/CHANGELOG.md b/core/tauri/CHANGELOG.md index eaf4395bc..b1c2228c1 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[1.0.2] + +- Fixes check for local URL when an external URL is provided to the window and it is based on the configured devPath. + - [2e74d20e](https://www.github.com/tauri-apps/tauri/commit/2e74d20e834c0cb8c19fed25f8e7968f758ca8b1) fix(core): check whether external url is local, ref [#4449](https://www.github.com/tauri-apps/tauri/pull/4449) ([#4536](https://www.github.com/tauri-apps/tauri/pull/4536)) on 2022-06-30 + ## \[1.0.1] - Added `fn new` constructors for `PhysicalSize`, `LogicalSize`, `PhysicalPosition` and `LogicalPosition` and missing conversion methods. diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index 14a209028..7f507c8a9 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -16,7 +16,7 @@ license = "Apache-2.0 OR MIT" name = "tauri" readme = "README.md" repository = "https://github.com/tauri-apps/tauri" -version = "1.0.1" +version = "1.0.2" [package.metadata.docs.rs] no-default-features = true @@ -55,10 +55,10 @@ url = { version = "2.2" } anyhow = "1.0" thiserror = "1.0" once_cell = "1.12" -tauri-runtime = { version = "0.10.0", path = "../tauri-runtime" } -tauri-macros = { version = "1.0.1", path = "../tauri-macros" } -tauri-utils = { version = "1.0.1", features = [ "resources" ], path = "../tauri-utils" } -tauri-runtime-wry = { version = "0.10.0", path = "../tauri-runtime-wry", optional = true } +tauri-runtime = { version = "0.10.1", path = "../tauri-runtime" } +tauri-macros = { version = "1.0.2", path = "../tauri-macros" } +tauri-utils = { version = "1.0.2", features = [ "resources" ], path = "../tauri-utils" } +tauri-runtime-wry = { version = "0.10.1", path = "../tauri-runtime-wry", optional = true } rand = "0.8" semver = { version = "1.0", features = [ "serde" ] } serde_repr = "0.1" diff --git a/tooling/bundler/CHANGELOG.md b/tooling/bundler/CHANGELOG.md index f8d45eb7b..daa2251c9 100644 --- a/tooling/bundler/CHANGELOG.md +++ b/tooling/bundler/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[1.0.2] + +- Enhance the `DownloadedBootstrapper` Webview2 install mode compatibility with Windows 8. + - [3df6c8c6](https://www.github.com/tauri-apps/tauri/commit/3df6c8c6454a052047b9f766691048860b50ea70) feat(bundler): enable TLS 1.2 before downloading webview2 bootstrapper ([#4543](https://www.github.com/tauri-apps/tauri/pull/4543)) on 2022-06-30 + ## \[1.0.1] - Fix AppImage bundling when appimagelauncher is enabled. diff --git a/tooling/bundler/Cargo.toml b/tooling/bundler/Cargo.toml index 8202d3652..192c2ea84 100644 --- a/tooling/bundler/Cargo.toml +++ b/tooling/bundler/Cargo.toml @@ -2,7 +2,7 @@ workspace = { } [package] name = "tauri-bundler" -version = "1.0.1" +version = "1.0.2" authors = [ "George Burton ", "Tauri Programme within The Commons Conservancy" @@ -22,7 +22,7 @@ exclude = [ ] [dependencies] -tauri-utils = { version = "1.0.1", path = "../../core/tauri-utils", features = [ "resources" ] } +tauri-utils = { version = "1.0.2", path = "../../core/tauri-utils", features = [ "resources" ] } image = "0.24.2" libflate = "1.2" anyhow = "1.0" diff --git a/tooling/cli/CHANGELOG.md b/tooling/cli/CHANGELOG.md index 6ae794735..843f2e9f0 100644 --- a/tooling/cli/CHANGELOG.md +++ b/tooling/cli/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[1.0.2] + +- Fixes a crash on the `signer sign` command. + - [8e808fec](https://www.github.com/tauri-apps/tauri/commit/8e808fece95f2e506acf2c446d37b9913fd67d50) fix(cli.rs): conflicts_with arg doesn't exist closes ([#4538](https://www.github.com/tauri-apps/tauri/pull/4538)) on 2022-06-30 + ## \[1.0.1] - No longer adds the `pkg-config` dependency to `.deb` packages when the `systemTray` is used. diff --git a/tooling/cli/Cargo.lock b/tooling/cli/Cargo.lock index 446de9987..d1f58c2e8 100644 --- a/tooling/cli/Cargo.lock +++ b/tooling/cli/Cargo.lock @@ -2719,7 +2719,7 @@ dependencies = [ [[package]] name = "tauri-bundler" -version = "1.0.1" +version = "1.0.2" dependencies = [ "anyhow", "ar", @@ -2756,7 +2756,7 @@ dependencies = [ [[package]] name = "tauri-cli" -version = "1.0.1" +version = "1.0.2" dependencies = [ "anyhow", "base64", @@ -2813,7 +2813,7 @@ dependencies = [ [[package]] name = "tauri-utils" -version = "1.0.1" +version = "1.0.2" dependencies = [ "aes-gcm", "ctor", diff --git a/tooling/cli/Cargo.toml b/tooling/cli/Cargo.toml index 6e11c6f58..a240facad 100644 --- a/tooling/cli/Cargo.toml +++ b/tooling/cli/Cargo.toml @@ -3,7 +3,7 @@ members = [ "node" ] [package] name = "tauri-cli" -version = "1.0.1" +version = "1.0.2" authors = [ "Tauri Programme within The Commons Conservancy" ] edition = "2021" rust-version = "1.57" @@ -29,7 +29,7 @@ path = "src/main.rs" [dependencies] clap = { version = "3.2", features = [ "derive" ] } anyhow = "1.0" -tauri-bundler = { version = "1.0.1", path = "../bundler" } +tauri-bundler = { version = "1.0.2", path = "../bundler" } colored = "2.0" once_cell = "1.12" serde = { version = "1.0", features = [ "derive" ] } @@ -39,7 +39,7 @@ notify = "4.0" shared_child = "1.0" toml_edit = "0.14" json-patch = "0.2" -tauri-utils = { version = "1.0.1", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5" ] } +tauri-utils = { version = "1.0.2", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5" ] } toml = "0.5" valico = "3.6" handlebars = "4.3" diff --git a/tooling/cli/metadata.json b/tooling/cli/metadata.json index 33b17468d..8f0f940d8 100644 --- a/tooling/cli/metadata.json +++ b/tooling/cli/metadata.json @@ -1,8 +1,8 @@ { "cli.js": { - "version": "1.0.1", + "version": "1.0.2", "node": ">= 10.0.0" }, - "tauri": "1.0.1", - "tauri-build": "1.0.1" + "tauri": "1.0.2", + "tauri-build": "1.0.2" } diff --git a/tooling/cli/node/CHANGELOG.md b/tooling/cli/node/CHANGELOG.md index 819b34efe..62c7b3440 100644 --- a/tooling/cli/node/CHANGELOG.md +++ b/tooling/cli/node/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[1.0.2] + +- Fixes a crash on the `signer sign` command. + - [8e808fec](https://www.github.com/tauri-apps/tauri/commit/8e808fece95f2e506acf2c446d37b9913fd67d50) fix(cli.rs): conflicts_with arg doesn't exist closes ([#4538](https://www.github.com/tauri-apps/tauri/pull/4538)) on 2022-06-30 + ## \[1.0.1] - No longer adds the `pkg-config` dependency to `.deb` packages when the `systemTray` is used. diff --git a/tooling/cli/node/package.json b/tooling/cli/node/package.json index 17e50666d..0c3193e74 100644 --- a/tooling/cli/node/package.json +++ b/tooling/cli/node/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/cli", - "version": "1.0.1", + "version": "1.0.2", "description": "Command line interface for building Tauri apps", "funding": { "type": "opencollective",