diff --git a/.changeset/twelve-poems-approve.md b/.changeset/twelve-poems-approve.md new file mode 100644 index 0000000..8fd49b5 --- /dev/null +++ b/.changeset/twelve-poems-approve.md @@ -0,0 +1,6 @@ +--- +"taurpc": patch +--- + +- Allow doc comments on IPC types - [#21](https://github.com/MatsDK/TauRPC/issues/21) +- Allow users to declare a router without root procedures - [#22](https://github.com/MatsDK/TauRPC/issues/22) diff --git a/README.md b/README.md index 63141c9..027c69f 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ First, add the following crates to your `Cargo.toml`: # src-tauri/Cargo.toml [dependencies] -taurpc = "0.2.4" +taurpc = "0.2.6" specta = { version = "=2.0.0-rc.9", features = ["export"] } tokio = { version = "1", features = ["full"] } diff --git a/taurpc/Cargo.toml b/taurpc/Cargo.toml index 1ff8ad0..545484c 100644 --- a/taurpc/Cargo.toml +++ b/taurpc/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "taurpc" authors = ["MatsDK"] -version = "0.2.4" +version = "0.2.6" edition = "2021" description = "A type-safe IPC layer for tauri commands" documentation = "https://docs.rs/taurpc" @@ -18,7 +18,7 @@ members = [ ] [dependencies] -taurpc-macros = { path = "./taurpc-macros", version = "=0.2.5" } +taurpc-macros = { path = "./taurpc-macros", version = "=0.2.6" } specta = { version = "=2.0.0-rc.9", features = ["export", "typescript"] } tauri = { version = "1.3" } diff --git a/taurpc/taurpc-macros/Cargo.toml b/taurpc/taurpc-macros/Cargo.toml index 3a1b854..9388257 100644 --- a/taurpc/taurpc-macros/Cargo.toml +++ b/taurpc/taurpc-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taurpc-macros" -version = "0.2.5" +version = "0.2.6" edition = "2021" description = "Macros for the taurpc crate" documentation = "https://docs.rs/taurpc"