Skip to content

Commit f290eef

Browse files
chore: release
1 parent 568ea71 commit f290eef

File tree

8 files changed

+57
-9
lines changed

8 files changed

+57
-9
lines changed

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: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.3.6](https://github.com/crabnebula-dev/devtools/compare/devtools-core-v0.3.5...devtools-core-v0.3.6) - 2025-08-05
11+
12+
### Other
13+
14+
- lint
15+
# Changelog
216
All notable changes to this project will be documented in this file.
317

418
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

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.5"
3+
version = "0.3.6"
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.2" }
14+
devtools-wire-format = { path = "../wire", version = "0.5.3" }
1515
tracing.workspace = true
1616
tracing-core.workspace = true
1717
tracing-subscriber.workspace = true

crates/devtools/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [2.0.1](https://github.com/crabnebula-dev/devtools/compare/tauri-plugin-devtools-v2.0.0...tauri-plugin-devtools-v2.0.1) - 2025-08-05
11+
12+
### Other
13+
14+
- 3033
15+
- change default port to 3030
16+
- Update README.md
17+
# Changelog
218
All notable changes to this project will be documented in this file.
319

420
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

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"
3+
version = "2.0.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.5" }
25+
devtools-core = { path = "../devtools-core", version = "0.3.6" }
2626
tauri.workspace = true
2727
tracing.workspace = true
2828
tracing-subscriber.workspace = true

crates/wire/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.5.3](https://github.com/crabnebula-dev/devtools/compare/devtools-wire-format-v0.5.2...devtools-wire-format-v0.5.3) - 2025-08-05
11+
12+
### Fixed
13+
14+
- fix lint
15+
16+
### Other
17+
18+
- 3033
19+
# Changelog
220
All notable changes to this project will be documented in this file.
321

422
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

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.2"
3+
version = "0.5.3"
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" }
20+
tauri-plugin-devtools = { path = "../../../crates/devtools", version = "2.0.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)