Skip to content

Commit

Permalink
🎉 Release 2.0.0-rc.19 w/ Tauri 2.0.0-rc.9
Browse files Browse the repository at this point in the history
  • Loading branch information
oscartbeaumont committed Sep 9, 2024
1 parent b67f7db commit b3c7c17
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 33 deletions.
51 changes: 25 additions & 26 deletions Cargo.lock

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

4 changes: 2 additions & 2 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.18"
version = "2.0.0-rc.19"
authors = ["Oscar Beaumont <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -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.8" }
tauri = { version = "=2.0.0-rc.10" }
specta = { version = "=2.0.0-rc.20" }
specta-typescript = { version = "0.0.7" }
specta-jsdoc = { version = "0.0.7" }
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.7", features = [] }
tauri-build = { version = "=2.0.0-rc.9", 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.7", features = [] }
tauri-build = { version = "=2.0.0-rc.9", features = [] }

[dependencies]
tauri = { workspace = true, features = [] }
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.8 specta@=2.0.0-rc.20
//! cargo add tauri@=2.0.0-rc.10 specta@=2.0.0-rc.20
//!
//! # Typescript
//! cargo add [email protected]
//! cargo add tauri-specta@=2.0.0-rc.18 --features derive,typescript
//! cargo add tauri-specta@=2.0.0-rc.19 --features derive,typescript
//!
//! # JSDoc
//! cargo add [email protected]
//! cargo add tauri-specta@=2.0.0-rc.18 --features derive,javascript
//! cargo add tauri-specta@=2.0.0-rc.19 --features derive,javascript
//! ```
//!
//! ## Features
Expand Down

0 comments on commit b3c7c17

Please sign in to comment.