From a1a6cec1b9dfb2660c0cf5809d3473bacb28b020 Mon Sep 17 00:00:00 2001 From: Robin Date: Fri, 11 Sep 2026 15:44:53 +0200 Subject: [PATCH 1/2] chore: fix v1 release notes --- crates/v1/crates/devtools/CHANGELOG.md | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/crates/v1/crates/devtools/CHANGELOG.md b/crates/v1/crates/devtools/CHANGELOG.md index b83a1ac4..c8e7ab14 100644 --- a/crates/v1/crates/devtools/CHANGELOG.md +++ b/crates/v1/crates/devtools/CHANGELOG.md @@ -11,16 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other -- 3033 -- change default port to 3030 +- change default port to 3030 ([#373](https://github.com/crabnebula-dev/devtools/pull/373)) - bump msrv -# 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] ## [0.3.3](https://github.com/crabnebula-dev/devtools/compare/v0.3.2...v0.3.3) - 2024-07-25 From 77f128c6ac4aa3e01fbc56f7e137bfca1dca006d Mon Sep 17 00:00:00 2001 From: Robin Date: Fri, 11 Sep 2026 17:49:19 +0200 Subject: [PATCH 2/2] chore: release devtools 0.3.5 --- crates/v1/Cargo.lock | 2 +- crates/v1/crates/devtools/CHANGELOG.md | 23 +++++++++++++++++++++++ crates/v1/crates/devtools/Cargo.toml | 2 +- 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/crates/v1/Cargo.lock b/crates/v1/Cargo.lock index a3653245..3e360dfe 100644 --- a/crates/v1/Cargo.lock +++ b/crates/v1/Cargo.lock @@ -647,7 +647,7 @@ dependencies = [ [[package]] name = "devtools" -version = "0.3.4" +version = "0.3.5" dependencies = [ "async-stream", "bytes", diff --git a/crates/v1/crates/devtools/CHANGELOG.md b/crates/v1/crates/devtools/CHANGELOG.md index c8e7ab14..e3e6626c 100644 --- a/crates/v1/crates/devtools/CHANGELOG.md +++ b/crates/v1/crates/devtools/CHANGELOG.md @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.5](https://github.com/crabnebula-dev/devtools/compare/v0.3.4...v0.3.5) - 2026-09-11 + +### Changed + +- MSRV bump to 1.88, general dependency upgrades, ci chores ([#381](https://github.com/crabnebula-dev/devtools/pull/381)) +- Added MSRV policy ([#414](https://github.com/crabnebula-dev/devtools/pull/414)) +- Update to devtools-core 0.4.0 ([#418](https://github.com/crabnebula-dev/devtools/pull/418)) +- Upgrade to tonic/prost 0.14 and http 1 ([#407](https://github.com/crabnebula-dev/devtools/pull/407)) +- Simplified CORS handling to mirror the allowed request origin in `Access-Control-Allow-Origin`, including in local development mode, instead of returning an origin list or `*`. ([#407](https://github.com/crabnebula-dev/devtools/pull/407)) + +### Fixed + +- Increase span buffer size to avoid dropped spans and UX issues. ([#227](https://github.com/crabnebula-dev/devtools/pull/227)) +- Fix v1 release note duplication + +### Other + +- Address clippy errors ([#401](https://github.com/crabnebula-dev/devtools/pull/401)) +- General dependency updates +- General CI maintenance + ## [0.3.4](https://github.com/crabnebula-dev/devtools/compare/v0.3.3...v0.3.4) - 2025-08-05 ### Other @@ -17,9 +38,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.3.3](https://github.com/crabnebula-dev/devtools/compare/v0.3.2...v0.3.3) - 2024-07-25 ### Fixed + - use correct rust syntax for cfg on expressions ([#314](https://github.com/crabnebula-dev/devtools/pull/314)) ## [0.3.2](https://github.com/crabnebula-dev/devtools/compare/v0.3.1...v0.3.2) - 2024-05-29 ### Fixed + - Fixed CORS issues diff --git a/crates/v1/crates/devtools/Cargo.toml b/crates/v1/crates/devtools/Cargo.toml index 685d9517..57b232bd 100644 --- a/crates/v1/crates/devtools/Cargo.toml +++ b/crates/v1/crates/devtools/Cargo.toml @@ -2,7 +2,7 @@ name = "devtools" authors = ["CrabNebula "] edition = "2021" -version = "0.3.4" +version = "0.3.5" description = "CrabNebula devtools for Tauri: Inspect, monitor, and understand your application with ease." rust-version = "1.88.0" license = "MIT OR Apache-2.0"