diff --git a/.changes/pre.json b/.changes/pre.json index 106fe7c12..34fce0d96 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -32,6 +32,7 @@ ".changes/async-runtime-set.md", ".changes/async-runtime-spawn-blocking.md", ".changes/before-script-envs.md", + ".changes/build-rerun-if-resource-sidecar-change.md", ".changes/build-specify-win-sdk.md", ".changes/bundler-add-provider-short-name.md", ".changes/bundler-appimage-fuse.md", diff --git a/core/tauri-build/CHANGELOG.md b/core/tauri-build/CHANGELOG.md index b619be49f..9239d4948 100644 --- a/core/tauri-build/CHANGELOG.md +++ b/core/tauri-build/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[1.0.0-rc.2] + +- Rerun if sidecar or resource change. + - [afcc3ec5](https://www.github.com/tauri-apps/tauri/commit/afcc3ec50148074293350aaa26a05812207716be) fix(build): rerun if resource or sidecar change ([#3460](https://www.github.com/tauri-apps/tauri/pull/3460)) on 2022-02-14 + ## \[1.0.0-rc.1] - Remove `cargo:rerun-if-changed` check for non-existent file that caused projects to *always* rebuild. diff --git a/core/tauri-build/Cargo.toml b/core/tauri-build/Cargo.toml index 671e9679a..aa09565cd 100644 --- a/core/tauri-build/Cargo.toml +++ b/core/tauri-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-build" -version = "1.0.0-rc.1" +version = "1.0.0-rc.2" authors = [ "Tauri Programme within The Commons Conservancy" ] categories = [ "gui", "web-programming" ] license = "Apache-2.0 OR MIT" diff --git a/tooling/cli/metadata.json b/tooling/cli/metadata.json index 9c8bea2a4..fa0bc2b1e 100644 --- a/tooling/cli/metadata.json +++ b/tooling/cli/metadata.json @@ -4,5 +4,5 @@ "node": ">= 12.13.0" }, "tauri": "1.0.0-rc.2", - "tauri-build": "1.0.0-rc.1" + "tauri-build": "1.0.0-rc.2" }