From 9e0392a56770274606980a2f2acba3266ebe74f4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 May 2024 12:49:03 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 6 +++--- crates/devtools-core/CHANGELOG.md | 10 ++++++++++ crates/devtools-core/Cargo.toml | 4 ++-- crates/devtools/CHANGELOG.md | 12 ++++++++++++ crates/devtools/Cargo.toml | 4 ++-- crates/wire/CHANGELOG.md | 5 +++++ crates/wire/Cargo.toml | 2 +- examples/tauri/src-tauri/Cargo.toml | 2 +- 8 files changed, 36 insertions(+), 9 deletions(-) create mode 100644 crates/devtools/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index 3ed0c2f2..e6a13193 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -635,7 +635,7 @@ dependencies = [ [[package]] name = "devtools-core" -version = "0.3.0" +version = "0.3.1" dependencies = [ "async-stream", "bytes", @@ -659,7 +659,7 @@ dependencies = [ [[package]] name = "devtools-wire-format" -version = "0.5.0" +version = "0.5.1" dependencies = [ "bitflags 2.5.0", "prost", @@ -3587,7 +3587,7 @@ dependencies = [ [[package]] name = "tauri-plugin-devtools" -version = "2.0.0-beta.0" +version = "2.0.0-beta.1" dependencies = [ "async-stream", "bytes", diff --git a/crates/devtools-core/CHANGELOG.md b/crates/devtools-core/CHANGELOG.md index f95cda18..06d967d6 100644 --- a/crates/devtools-core/CHANGELOG.md +++ b/crates/devtools-core/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/crabnebula-dev/devtools/compare/devtools-core-v0.3.0...devtools-core-v0.3.1) - 2024-05-13 + +### Fixed +- fix release + +### Other +- Feat/calls virtualization ([#240](https://github.com/crabnebula-dev/devtools/pull/240)) +- update deps +- update deps + ## [0.3.0](https://github.com/crabnebula-dev/devtools/compare/devtools-v0.2.5...devtools-v0.3.0) - 2023-12-20 ### Fixed diff --git a/crates/devtools-core/Cargo.toml b/crates/devtools-core/Cargo.toml index 8fda5fc3..31c77a91 100644 --- a/crates/devtools-core/Cargo.toml +++ b/crates/devtools-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "devtools-core" -version = "0.3.0" +version = "0.3.1" 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.0" } +devtools-wire-format = { path = "../wire", version = "0.5.1" } tracing.workspace = true tracing-core.workspace = true tracing-subscriber.workspace = true diff --git a/crates/devtools/CHANGELOG.md b/crates/devtools/CHANGELOG.md new file mode 100644 index 00000000..b709f18a --- /dev/null +++ b/crates/devtools/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [2.0.0-beta.1](https://github.com/crabnebula-dev/devtools/compare/tauri-plugin-devtools-v2.0.0-beta.0...tauri-plugin-devtools-v2.0.0-beta.1) - 2024-05-13 + +### Fixed +- *(devtools)* docs.rs failing to build diff --git a/crates/devtools/Cargo.toml b/crates/devtools/Cargo.toml index 5529866a..1c016eb8 100644 --- a/crates/devtools/Cargo.toml +++ b/crates/devtools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-devtools" -version = "2.0.0-beta.0" +version = "2.0.0-beta.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.0" } +devtools-core = { path = "../devtools-core", version = "0.3.1" } tauri.workspace = true tracing.workspace = true tracing-subscriber.workspace = true diff --git a/crates/wire/CHANGELOG.md b/crates/wire/CHANGELOG.md index 472b4884..c71365bf 100644 --- a/crates/wire/CHANGELOG.md +++ b/crates/wire/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.1](https://github.com/crabnebula-dev/devtools/compare/devtools-wire-format-v0.5.0...devtools-wire-format-v0.5.1) - 2024-05-13 + +### Other +- update protobuf generated files + ## [0.2.5](https://github.com/crabnebula-dev/devtools/compare/devtools-wire-format-v0.2.4...devtools-wire-format-v0.2.5) - 2023-12-11 ### Other diff --git a/crates/wire/Cargo.toml b/crates/wire/Cargo.toml index c9ca7e37..e1d25ea1 100644 --- a/crates/wire/Cargo.toml +++ b/crates/wire/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "devtools-wire-format" -version = "0.5.0" +version = "0.5.1" 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 52ffd152..043ebd3a 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-beta.0" } +tauri-plugin-devtools = { path = "../../../crates/devtools", version = "2.0.0-beta.1" } tracing.workspace = true tokio = { workspace = true, features = ["time"] } reqwest = { version = "0.11", default-features = false, features = [