From f5b3dc57e05e5961e4a0ef7e119a73f835fcaa3e Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Fri, 28 Aug 2026 00:23:07 +0000 Subject: [PATCH] =?UTF-8?q?chore(release):=20=E5=87=86=E5=A4=87=20v1.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将 package、Cargo、lockfile 和 Tauri 版本同步到 1.1.0,并把 Unreleased 变更写入 1.1.0,补充协议解析 TX/RX 滚动修复。 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- package.json | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 231ccba..ef97ad7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,14 @@ All notable changes to bbcom are documented here. The format is based on ## [Unreleased] +## [1.1.0] - 2026-08-28 + ### Fixed +- Protocol parser TX/RX list now scrolls inside the session display area instead + of being clipped to about fourteen rows. HEX/RAW dump falls back to the frame + payload when `transportData` is empty, and SMP correlation reads the full + shared TX/RX timeline. - MCUmgr reset-disconnect unit test now uses `std::io::Error::other`, so Clippy `-D warnings` on the Quality workflow passes again. diff --git a/Cargo.lock b/Cargo.lock index 80af0fd..6284812 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -280,7 +280,7 @@ checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5" [[package]] name = "bbcom" -version = "1.0.4" +version = "1.1.0" dependencies = [ "base64 0.22.1", "bbcom-contracts", diff --git a/package.json b/package.json index f357b6c..82e9d54 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "bbcom", "private": true, - "version": "1.0.4", + "version": "1.1.0", "type": "module", "packageManager": "pnpm@11.11.0", "engines": { diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 064fbd4..3dffbb3 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bbcom" -version = "1.0.4" +version = "1.1.0" description = "Serial Port Assistant" edition = "2024" rust-version = "1.97" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index ad63e36..e091975 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2.0.0", "productName": "bbcom", - "version": "1.0.4", + "version": "1.1.0", "identifier": "com.bbcom.app", "build": { "beforeDevCommand": "pnpm run tauri:before-dev",