diff --git a/CHANGELOG.md b/CHANGELOG.md index 49987a66f..4087d4828 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [v0.6.0-rc.3](https://github.com/block/berd/releases/tag/v0.6.0-rc.3) - 2026-08-13 + +This release adds safer chat cleanup, clearer subagent activity, and improved guidance for getting started with Berd. + +- **Automatic chat archiving:** Choose when inactive, unpinned chats are archived under Settings → Archive. Berd asks for confirmation before enabling it and protects active, running, pinned, or draft-bearing chats. +- **Clearer subagent activity:** Chat activity now identifies known subagents and their assigned tasks, with more accurate labels for delegation, messages, waiting, interruptions, and cancellations. +- **Experimental — Guided starter tasks:** Starter tasks now provide contextual guidance, take you directly to the relevant workflow, and can be restored from the Home widget picker after dismissal. + +**Full Changelog**: https://github.com/block/berd/compare/v0.6.0-rc.2...b2460b0 + ## [v0.6.0-rc.2](https://github.com/block/berd/releases/tag/v0.6.0-rc.2) - 2026-08-13 This release improves platform support and keeps Berd’s built-in agent runtime current. diff --git a/package.json b/package.json index c3e61b404..b1d431b1a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "berd", "private": true, - "version": "0.6.0-rc.2", + "version": "0.6.0-rc.3", "type": "module", "packageManager": "pnpm@10.33.0", "scripts": { diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 8844fded9..70ab7ee82 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "Berd" -version = "0.6.0-rc.2" +version = "0.6.0-rc.3" dependencies = [ "anyhow", "audioadapter-buffers", @@ -579,7 +579,7 @@ checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1" [[package]] name = "berdctl" -version = "0.6.0-rc.2" +version = "0.6.0-rc.3" dependencies = [ "clap", "indexmap 2.13.1", @@ -6580,7 +6580,7 @@ dependencies = [ [[package]] name = "tauri-plugin-berdctl" -version = "0.6.0-rc.2" +version = "0.6.0-rc.3" dependencies = [ "axum", "log", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index b5fce0c6d..d5ff9ebfb 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "Berd" -version = "0.6.0-rc.2" +version = "0.6.0-rc.3" description = "Berd desktop app" authors = ["Block, Inc."] edition = "2021" diff --git a/src-tauri/crates/berdctl/Cargo.toml b/src-tauri/crates/berdctl/Cargo.toml index c5d1ddbd5..4f42ad408 100644 --- a/src-tauri/crates/berdctl/Cargo.toml +++ b/src-tauri/crates/berdctl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "berdctl" -version = "0.6.0-rc.2" +version = "0.6.0-rc.3" description = "Command-line control of the Berd desktop app" authors = ["Block, Inc."] edition = "2021" diff --git a/src-tauri/plugins/berdctl/Cargo.toml b/src-tauri/plugins/berdctl/Cargo.toml index c3a51cc13..9b1761733 100644 --- a/src-tauri/plugins/berdctl/Cargo.toml +++ b/src-tauri/plugins/berdctl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-berdctl" -version = "0.6.0-rc.2" +version = "0.6.0-rc.3" edition = "2021" links = "tauri-plugin-berdctl" build = "build.rs" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 815aa8e3a..f8d17d11e 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Berd", - "version": "0.6.0-rc.2", + "version": "0.6.0-rc.3", "identifier": "xyz.block.berd", "build": { "beforeDevCommand": {