Skip to content

Commit 9e0392a

Browse files
chore: release
1 parent 9a8e1fd commit 9e0392a

8 files changed

Lines changed: 36 additions & 9 deletions

File tree

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/devtools-core/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.3.1](https://github.com/crabnebula-dev/devtools/compare/devtools-core-v0.3.0...devtools-core-v0.3.1) - 2024-05-13
10+
11+
### Fixed
12+
- fix release
13+
14+
### Other
15+
- Feat/calls virtualization ([#240](https://github.com/crabnebula-dev/devtools/pull/240))
16+
- update deps
17+
- update deps
18+
919
## [0.3.0](https://github.com/crabnebula-dev/devtools/compare/devtools-v0.2.5...devtools-v0.3.0) - 2023-12-20
1020

1121
### Fixed

crates/devtools-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "devtools-core"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = "CrabNebula devtools for Tauri: Inspect, monitor, and understand your application with ease."
55
authors.workspace = true
66
edition.workspace = true
@@ -11,7 +11,7 @@ repository.workspace = true
1111
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212

1313
[dependencies]
14-
devtools-wire-format = { path = "../wire", version = "0.5.0" }
14+
devtools-wire-format = { path = "../wire", version = "0.5.1" }
1515
tracing.workspace = true
1616
tracing-core.workspace = true
1717
tracing-subscriber.workspace = true

crates/devtools/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
## [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
10+
11+
### Fixed
12+
- *(devtools)* docs.rs failing to build

crates/devtools/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-devtools"
3-
version = "2.0.0-beta.0"
3+
version = "2.0.0-beta.1"
44
description = "CrabNebula devtools for Tauri: Inspect, monitor, and understand your application with ease."
55
authors.workspace = true
66
edition.workspace = true
@@ -22,7 +22,7 @@ tauri-plugin = { workspace = true, features = ["build"] }
2222
tauri = { workspace = true, features = ["test"] }
2323

2424
[dependencies]
25-
devtools-core = { path = "../devtools-core", version = "0.3.0" }
25+
devtools-core = { path = "../devtools-core", version = "0.3.1" }
2626
tauri.workspace = true
2727
tracing.workspace = true
2828
tracing-subscriber.workspace = true

crates/wire/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [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
10+
11+
### Other
12+
- update protobuf generated files
13+
914
## [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
1015

1116
### Other

crates/wire/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "devtools-wire-format"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "gRPC wire format for the CrabNebula devtools for Tauri"
55
authors.workspace = true
66
edition.workspace = true

examples/tauri/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ tauri-build.workspace = true
1717

1818
[dependencies]
1919
tauri.workspace = true
20-
tauri-plugin-devtools = { path = "../../../crates/devtools", version = "2.0.0-beta.0" }
20+
tauri-plugin-devtools = { path = "../../../crates/devtools", version = "2.0.0-beta.1" }
2121
tracing.workspace = true
2222
tokio = { workspace = true, features = ["time"] }
2323
reqwest = { version = "0.11", default-features = false, features = [

0 commit comments

Comments
 (0)