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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.8.0] - 2026-09-03

The Rust lane can now delete a whole session, fenced exactly as the Swift
`SessionDeleter` — the piece a second client needs before it may offer
deletion at all.

### Added
- **Rust: `deletion` module.** `agent-session-core` can now remove a whole
session's own log files — the Rust counterpart of the Swift
Expand Down
2 changes: 1 addition & 1 deletion 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 implementations/rust/crates/agent-session-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agent-session-core"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
license = "AGPL-3.0-only"
description = "Cross-platform Rust implementation of agent-session-kit's session reading: index queries, lightweight discovery, transcripts, and resume commands."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public enum AgentSessionKitInfo {
///
/// Semver, bare — no `v` prefix, matching the tags. Bumping it is part
/// of the release commit; see `RELEASING.md`.
public static let version = "0.7.0"
public static let version = "0.8.0"

/// Where the package lives. Public because a host that shows the
/// version usually wants somewhere to send the reader.
Expand Down
Loading