Skip to content

Commit 16c3aa6

Browse files
committed
chore: bump version to 0.1.1
1 parent 3f2feb3 commit 16c3aa6

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.1] - 2026-02-23
11+
1012
### Added
1113
- Command `#sessions` to show all active sessions info
1214
- White check mark emoji reaction on `#new` message when session ends
@@ -23,5 +25,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2325
- Commands: `#new`, `#agents`, `#session`, `#end`, `#read`, `#diff`
2426
- Shell command execution with `!` prefix
2527

26-
[Unreleased]: https://github.com/DiscreteTom/juan/compare/v0.1.0...HEAD
28+
[Unreleased]: https://github.com/DiscreteTom/juan/compare/v0.1.1...HEAD
29+
[0.1.1]: https://github.com/DiscreteTom/juan/compare/v0.1.0...v0.1.1
2730
[0.1.0]: https://github.com/DiscreteTom/juan/releases/tag/v0.1.0

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "juan"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2024"
55
repository = "https://github.com/DiscreteTom/juan"
66
license = "MIT"

src/agent.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ impl AgentManager {
154154

155155
// Initialize the agent with ACP protocol
156156
let init_req = InitializeRequest::new(ProtocolVersion::LATEST)
157-
.client_info(Implementation::new("juan", "0.1.0"));
157+
.client_info(Implementation::new("juan", "0.1.1"));
158158

159159
match connection.initialize(init_req).await {
160160
Ok(_) => info!("Agent {} initialized successfully", agent_name),

0 commit comments

Comments
 (0)