Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
# Changelog

## [v0.6.0-rc.3](https://github.com/block/berd/releases/tag/v0.6.0-rc.3) - 2026-08-13
## [v0.6.0](https://github.com/block/berd/releases/tag/v0.6.0) - 2026-08-14

This release adds safer chat cleanup, clearer subagent activity, and improved guidance for getting started with Berd.
This release makes project chats safer, improves chat organization and agent visibility, and refreshes the getting-started experience. Agent sharing is also now available to everyone.

- **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.
- **Multi-folder project chats:** Choose worktree behavior for each Git folder when creating a project, with clearer setup prompts, progress, and recovery when starting a chat.
- **Automatic chat archiving:** Choose when inactive, unpinned chats are archived under Settings → Archive. Active, running, pinned, and draft-bearing chats remain protected, and archived chats can be restored at any time.
- **Clearer subagent activity:** Chat activity now identifies known subagents and their assigned tasks, with accurate labels for delegation, messages, waiting, interruptions, and cancellations.
- **Agent share cards:** Share downloadable agent cards directly from the agent gallery or detail page without enabling an experiment.
- **Message queue improvements:** Queued messages are grouped more clearly, and dismissing one no longer sends the next message unexpectedly.
- **Streamlined navigation:** The sidebar now starts directly with navigation and chats, reducing visual clutter.
- **Experimental — Guided starter tasks:** Starter tasks now provide contextual guidance, open the relevant workflow, and can be restored from the Home widget picker after dismissal.
- **Experimental — Berdy onboarding:** A refreshed five-step tour introduces providers, chats, agents, and skills, then lets new users start chatting with Berdy directly from Home.

**Full Changelog**: https://github.com/block/berd/compare/v0.6.0-rc.2...b2460b0
**Full Changelog**: https://github.com/block/berd/compare/9b88cac3f72d09bb67cd4448029cc0fe17f6ad5c...39469b3

## [v0.6.0-rc.2](https://github.com/block/berd/releases/tag/v0.6.0-rc.2) - 2026-08-13

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "berd",
"private": true,
"version": "0.6.0-rc.3",
"version": "0.6.0",
"type": "module",
"packageManager": "pnpm@10.33.0",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "Berd"
version = "0.6.0-rc.3"
version = "0.6.0"
description = "Berd desktop app"
authors = ["Block, Inc."]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/crates/berdctl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "berdctl"
version = "0.6.0-rc.3"
version = "0.6.0"
description = "Command-line control of the Berd desktop app"
authors = ["Block, Inc."]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/plugins/berdctl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-berdctl"
version = "0.6.0-rc.3"
version = "0.6.0"
edition = "2021"
links = "tauri-plugin-berdctl"
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Berd",
"version": "0.6.0-rc.3",
"version": "0.6.0",
"identifier": "xyz.block.berd",
"build": {
"beforeDevCommand": {
Expand Down