diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..0c94dbb --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1 @@ +*Please don't submit Tauri version upgrades as PR's, just put a comment on #126* \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index e16eef3..57fecee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3061,9 +3061,9 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" [[package]] name = "tauri" -version = "2.0.0-rc.0" +version = "2.0.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "255e746089a370802ec4eb896dccc6f27c1dd2a203c1dc484fd996db954e2300" +checksum = "19ee93e545e49458813d4ed16179c67ee6141dba140ec3d4f078dda3b8d4e0d1" dependencies = [ "anyhow", "bytes", @@ -3111,9 +3111,9 @@ dependencies = [ [[package]] name = "tauri-build" -version = "2.0.0-rc.0" +version = "2.0.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85ceb8d082c3b17b4b2eb134a39363a22c696ddba473d6e5c0ab1caadad4cfca" +checksum = "96a58b3a716b51d7f671f729bb8c0a53cd2551eec8450c64e828ef4e6c9f948e" dependencies = [ "anyhow", "cargo_toml", @@ -3133,9 +3133,9 @@ dependencies = [ [[package]] name = "tauri-codegen" -version = "2.0.0-rc.0" +version = "2.0.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2407c7d37a491b16e530445c9611d91091cae198eea2ed424913b740215605f2" +checksum = "90a9e63ecd827d57228864764e0234935c9aac230099cf145197c8c08e754ced" dependencies = [ "base64 0.22.1", "brotli", @@ -3160,9 +3160,9 @@ dependencies = [ [[package]] name = "tauri-macros" -version = "2.0.0-rc.0" +version = "2.0.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d210893b693be00f569b4f54456803debe104b7675f368205f2b6e94bac09b34" +checksum = "a54f5d5b289aa6215ffcfed7d4ff9960a04b7a854436d04519a9fcf911050cba" dependencies = [ "heck 0.5.0", "proc-macro2", @@ -3174,9 +3174,9 @@ dependencies = [ [[package]] name = "tauri-plugin" -version = "2.0.0-rc.0" +version = "2.0.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b352e4478af27bd7c76724bb426ebb32fc51baafb2186afabed4e706dc9e39d4" +checksum = "03ce2ac5e182251ff932750d69c9b240a78e44901a7a6234814d63c595b43660" dependencies = [ "anyhow", "glob", @@ -3222,9 +3222,9 @@ dependencies = [ [[package]] name = "tauri-runtime" -version = "2.0.0-rc.0" +version = "2.0.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6624fdf383ccafc9e8ad9205fe6e5c976b318efcd6b3662dde658c74e4254792" +checksum = "8f01b129b1ebdf09563c354760dbe7c0e96a166b4e33362d9c8d207f527c7ea5" dependencies = [ "dpi", "gtk", @@ -3241,9 +3241,9 @@ dependencies = [ [[package]] name = "tauri-runtime-wry" -version = "2.0.0-rc.0" +version = "2.0.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fd1a785c4281f8231b091593393b40cb3a800810c407b1ffed52de27ff1640a" +checksum = "fcda27639094ace2bf25f00bc10e35ea4e3af2f92753b1bdd2a174d1fa5a6292" dependencies = [ "cocoa", "gtk", @@ -3317,9 +3317,9 @@ dependencies = [ [[package]] name = "tauri-utils" -version = "2.0.0-rc.0" +version = "2.0.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f435eeaae1e69cf93cf19da0f727989eed2e5eb6fc63a8d21432f59dd3ac4ac" +checksum = "28bb83cffa26e9cb7a2b3d0c31ab87bf277f44aaaa90f17159aef4d37aabd051" dependencies = [ "brotli", "cargo_metadata", diff --git a/Cargo.toml b/Cargo.toml index 86e5df8..c060fe5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,7 +61,7 @@ todo = { level = "warn", priority = -1 } panic_in_result_fn = { level = "warn", priority = -1 } [workspace.dependencies] -tauri = { version = "=2.0.0-rc.0" } +tauri = { version = "=2.0.0-rc.2" } specta = { version = "=2.0.0-rc.20" } specta-typescript = { version = "0.0.7" } specta-jsdoc = { version = "0.0.7" } @@ -71,4 +71,4 @@ specta-jsdoc = { version = "0.0.7" } # tauri-build = { git = "https://github.com/oscartbeaumont/tauri.git", rev = "ddc64b706a7f2db271d40e9b216187b1aa153efa" } # specta = { path = "../specta/specta" } # specta-typescript = { path = "../specta/specta-typescript" } -# specta-jsdoc = { path = "../specta/specta-jsdoc" } \ No newline at end of file +# specta-jsdoc = { path = "../specta/specta-jsdoc" } diff --git a/examples/app/src-tauri/Cargo.toml b/examples/app/src-tauri/Cargo.toml index 3087ad2..0716467 100644 --- a/examples/app/src-tauri/Cargo.toml +++ b/examples/app/src-tauri/Cargo.toml @@ -10,7 +10,7 @@ rust-version = "1.57" publish = false [build-dependencies] -tauri-build = { version = "=2.0.0-rc.0", features = [] } +tauri-build = { version = "=2.0.0-rc.2", features = [] } [dependencies] serde_json = "1.0" @@ -20,7 +20,7 @@ tauri = { workspace = true, features = [] } tauri-specta = { path = "../../../", features = ["derive", "typescript", "javascript"] } specta-typescript = { workspace = true } specta-jsdoc = { workspace = true } -tauri-plugin-os = "^2.0.0-beta.3" +tauri-plugin-os = "^2.0.0-alpha.2" thiserror = "1" [features] diff --git a/examples/custom-plugin/app/src-tauri/Cargo.toml b/examples/custom-plugin/app/src-tauri/Cargo.toml index 9b6bf73..ca9ea3f 100644 --- a/examples/custom-plugin/app/src-tauri/Cargo.toml +++ b/examples/custom-plugin/app/src-tauri/Cargo.toml @@ -8,7 +8,7 @@ repository = "" edition = "2021" [build-dependencies] -tauri-build = { version = "=2.0.0-rc.0", features = [] } +tauri-build = { version = "=2.0.0-rc.2", features = [] } [dependencies] tauri = { workspace = true, features = [] } diff --git a/examples/custom-plugin/plugin/Cargo.toml b/examples/custom-plugin/plugin/Cargo.toml index 8a2f584..e0d66f9 100644 --- a/examples/custom-plugin/plugin/Cargo.toml +++ b/examples/custom-plugin/plugin/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" links = "tauri-plugin-specta-example" [build-dependencies] -tauri-plugin = { version = "=2.0.0-rc.0", features = ["build"] } +tauri-plugin = { version = "=2.0.0-rc.2", features = ["build"] } [dependencies] rand = "0.8.5" diff --git a/src/lib.rs b/src/lib.rs index 074e21d..8647b54 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -14,7 +14,7 @@ //! //! ```sh //! # Always required -//! cargo add tauri@=2.0.0-rc.0 specta@=2.0.0-rc.20 +//! cargo add tauri@=2.0.0-rc.2 specta@=2.0.0-rc.20 //! //! # Typescript //! cargo add specta-typescript@0.0.7