Skip to content

Commit

Permalink
🎉 Release v2.0.0-rc.18 w/ Tauri 2.0.0-rc.8
Browse files Browse the repository at this point in the history
  • Loading branch information
oscartbeaumont committed Sep 2, 2024
1 parent 86ceb90 commit 98ac1cd
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 38 deletions.
46 changes: 23 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 2 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tauri-specta"
description = "Completely typesafe Tauri commands"
version = "2.0.0-rc.17"
version = "2.0.0-rc.18"
authors = ["Oscar Beaumont <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -61,14 +61,7 @@ todo = { level = "warn", priority = -1 }
panic_in_result_fn = { level = "warn", priority = -1 }

[workspace.dependencies]
tauri = { version = "=2.0.0-rc.3" }
tauri = { version = "=2.0.0-rc.8" }
specta = { version = "=2.0.0-rc.20" }
specta-typescript = { version = "0.0.7" }
specta-jsdoc = { version = "0.0.7" }

# [patch.crates-io]
# tauri = { git = "https://github.com/oscartbeaumont/tauri.git", rev = "ddc64b706a7f2db271d40e9b216187b1aa153efa" }
# 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" }
2 changes: 1 addition & 1 deletion examples/app/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ rust-version = "1.57"
publish = false

[build-dependencies]
tauri-build = { version = "=2.0.0-rc.3", features = [] }
tauri-build = { version = "=2.0.0-rc.7", features = [] }

[dependencies]
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/custom-plugin/app/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository = ""
edition = "2021"

[build-dependencies]
tauri-build = { version = "=2.0.0-rc.3", features = [] }
tauri-build = { version = "=2.0.0-rc.7", features = [] }

[dependencies]
tauri = { workspace = true, features = [] }
Expand Down
2 changes: 1 addition & 1 deletion examples/custom-plugin/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
links = "tauri-plugin-specta-example"

[build-dependencies]
tauri-plugin = { version = "=2.0.0-rc.3", features = ["build"] }
tauri-plugin = { version = "=2.0.0-rc.7", features = ["build"] }

[dependencies]
rand = "0.8.5"
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
//!
//! ```sh
//! # Always required
//! cargo add tauri@=2.0.0-rc.3 specta@=2.0.0-rc.20
//! cargo add tauri@=2.0.0-rc.8 specta@=2.0.0-rc.20
//!
//! # Typescript
//! cargo add [email protected]
//! cargo add tauri-specta@=2.0.0-rc.17 --features derive,typescript
//! cargo add tauri-specta@=2.0.0-rc.18 --features derive,typescript
//!
//! # JSDoc
//! cargo add [email protected]
//! cargo add tauri-specta@=2.0.0-rc.17 --features derive,javascript
//! cargo add tauri-specta@=2.0.0-rc.18 --features derive,javascript
//! ```
//!
//! ## Features
Expand Down

0 comments on commit 98ac1cd

Please sign in to comment.