diff --git a/Cargo.lock b/Cargo.lock index 07ed313f..b9a11cbf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -708,7 +708,7 @@ dependencies = [ [[package]] name = "devtools-core" -version = "0.3.5" +version = "0.3.6" dependencies = [ "async-stream", "bytes", @@ -735,7 +735,7 @@ dependencies = [ [[package]] name = "devtools-wire-format" -version = "0.5.2" +version = "0.5.3" dependencies = [ "bitflags 2.6.0", "prost", @@ -3746,7 +3746,7 @@ dependencies = [ [[package]] name = "tauri-plugin-devtools" -version = "2.0.0" +version = "2.0.1" dependencies = [ "async-stream", "bytes", diff --git a/crates/devtools-core/CHANGELOG.md b/crates/devtools-core/CHANGELOG.md index f69cefc9..83949f1f 100644 --- a/crates/devtools-core/CHANGELOG.md +++ b/crates/devtools-core/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.6](https://github.com/crabnebula-dev/devtools/compare/devtools-core-v0.3.5...devtools-core-v0.3.6) - 2024-10-29 + +### Other + +- lint + ## [0.3.5](https://github.com/crabnebula-dev/devtools/compare/devtools-core-v0.3.4...devtools-core-v0.3.5) - 2024-09-05 ### Other diff --git a/crates/devtools-core/Cargo.toml b/crates/devtools-core/Cargo.toml index d0f219b1..b55c853e 100644 --- a/crates/devtools-core/Cargo.toml +++ b/crates/devtools-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "devtools-core" -version = "0.3.5" +version = "0.3.6" description = "CrabNebula devtools for Tauri: Inspect, monitor, and understand your application with ease." authors.workspace = true edition.workspace = true @@ -11,7 +11,7 @@ repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -devtools-wire-format = { path = "../wire", version = "0.5.2" } +devtools-wire-format = { path = "../wire", version = "0.5.3" } tracing.workspace = true tracing-core.workspace = true tracing-subscriber.workspace = true diff --git a/crates/devtools/CHANGELOG.md b/crates/devtools/CHANGELOG.md index fcc2ebce..711a6b4a 100644 --- a/crates/devtools/CHANGELOG.md +++ b/crates/devtools/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.1](https://github.com/crabnebula-dev/devtools/compare/tauri-plugin-devtools-v2.0.0...tauri-plugin-devtools-v2.0.1) - 2024-10-29 + +### Other + +- Update README.md + ## [2.0.0-rc.1](https://github.com/crabnebula-dev/devtools/compare/tauri-plugin-devtools-v2.0.0-rc.0...tauri-plugin-devtools-v2.0.0-rc.1) - 2024-09-05 ### Other diff --git a/crates/devtools/Cargo.toml b/crates/devtools/Cargo.toml index 9fd8afbe..568aab69 100644 --- a/crates/devtools/Cargo.toml +++ b/crates/devtools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-devtools" -version = "2.0.0" +version = "2.0.1" description = "CrabNebula devtools for Tauri: Inspect, monitor, and understand your application with ease." authors.workspace = true edition.workspace = true @@ -22,7 +22,7 @@ tauri-plugin = { workspace = true, features = ["build"] } tauri = { workspace = true, features = ["test"] } [dependencies] -devtools-core = { path = "../devtools-core", version = "0.3.5" } +devtools-core = { path = "../devtools-core", version = "0.3.6" } tauri.workspace = true tracing.workspace = true tracing-subscriber.workspace = true diff --git a/crates/wire/CHANGELOG.md b/crates/wire/CHANGELOG.md index aa8687aa..3655cc6e 100644 --- a/crates/wire/CHANGELOG.md +++ b/crates/wire/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.3](https://github.com/crabnebula-dev/devtools/compare/devtools-wire-format-v0.5.2...devtools-wire-format-v0.5.3) - 2024-10-29 + +### Fixed + +- fix lint + ## [0.5.2](https://github.com/crabnebula-dev/devtools/compare/devtools-wire-format-v0.5.1...devtools-wire-format-v0.5.2) - 2024-09-05 ### Other diff --git a/crates/wire/Cargo.toml b/crates/wire/Cargo.toml index 4e208d16..64a2cc8d 100644 --- a/crates/wire/Cargo.toml +++ b/crates/wire/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "devtools-wire-format" -version = "0.5.2" +version = "0.5.3" description = "gRPC wire format for the CrabNebula devtools for Tauri" authors.workspace = true edition.workspace = true diff --git a/examples/tauri/src-tauri/Cargo.toml b/examples/tauri/src-tauri/Cargo.toml index 557cdb3e..9ac40d2e 100644 --- a/examples/tauri/src-tauri/Cargo.toml +++ b/examples/tauri/src-tauri/Cargo.toml @@ -17,7 +17,7 @@ tauri-build.workspace = true [dependencies] tauri.workspace = true -tauri-plugin-devtools = { path = "../../../crates/devtools", version = "2.0.0" } +tauri-plugin-devtools = { path = "../../../crates/devtools", version = "2.0.1" } tracing.workspace = true tokio = { workspace = true, features = ["time"] } reqwest = { version = "0.11", default-features = false, features = [