Skip to content

Commit c9f2651

Browse files
committed
feat(bob-core): add context trimming and resilience features in core crate
1 parent 57c8062 commit c9f2651

8 files changed

Lines changed: 1352 additions & 10 deletions

File tree

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace.package]
2-
version = "0.2.2"
2+
version = "0.3.0"
33
edition = "2024"
44
license = "Apache-2.0"
55
repository = "https://github.com/longcipher/bob"
@@ -17,11 +17,11 @@ resolver = "3"
1717

1818
[workspace.dependencies]
1919
# internal crates
20-
bob-adapters = { path = "crates/bob-adapters", version = "0.2.2" }
21-
bob-chat = { path = "crates/bob-chat", version = "0.2.2" }
22-
bob-core = { path = "crates/bob-core", version = "0.2.2" }
23-
bob-runtime = { path = "crates/bob-runtime", version = "0.2.2" }
24-
bob-skills = { path = "crates/bob-skills", version = "0.2.2" }
20+
bob-adapters = { path = "crates/bob-adapters", version = "0.3.0" }
21+
bob-chat = { path = "crates/bob-chat", version = "0.3.0" }
22+
bob-core = { path = "crates/bob-core", version = "0.3.0" }
23+
bob-runtime = { path = "crates/bob-runtime", version = "0.3.0" }
24+
bob-skills = { path = "crates/bob-skills", version = "0.3.0" }
2525

2626
# external crates
2727
async-stream = "0.3.6"

Justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ lint:
2323

2424
# Run tests with cargo-nextest (falls back to cargo test if nextest is not installed)
2525
test:
26-
cargo nextest run --all-features 2>/dev/null || cargo test --all-features
26+
cargo nextest run --all-features
2727

2828
# Run tests with coverage
2929
test-coverage:

0 commit comments

Comments
 (0)