Skip to content

Commit 0df2913

Browse files
author
Symbiont OSS Sync
committed
Bump v0.4.0
1 parent 08684ad commit 0df2913

File tree

17 files changed

+356
-2220
lines changed

17 files changed

+356
-2220
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
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 = "symbi"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
edition = "2021"
55
authors = ["Jascha Wanger / ThirdKey.ai"]
66
description = "AI-native agent framework for building autonomous, policy-aware agents that can safely collaborate with humans, other agents, and large language models"

crates/dsl/Cargo.lock

Lines changed: 28 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/dsl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "symbi-dsl"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
edition = "2021"
55
authors = ["Jascha Wanger / ThirdKey.ai"]
66
description = "Symbi DSL - AI-native programming language with Tree-sitter integration"

crates/dsl/tests/parser_tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ mod parser_tests {
217217
let entry = entry.expect("Should read directory entry");
218218
let path = entry.path();
219219

220-
if path.extension().and_then(|s| s.to_str()).map_or(false, |ext| ext == "dsl" || ext == "symbi") {
220+
if path.extension().and_then(|s| s.to_str()).is_some_and(|ext| ext == "dsl" || ext == "symbi") {
221221
let filename = path.file_name().unwrap().to_str().unwrap();
222222

223223
if filename.starts_with("valid_") {
@@ -244,7 +244,7 @@ mod parser_tests {
244244
let entry = entry.expect("Should read directory entry");
245245
let path = entry.path();
246246

247-
if path.extension().and_then(|s| s.to_str()).map_or(false, |ext| ext == "dsl" || ext == "symbi") {
247+
if path.extension().and_then(|s| s.to_str()).is_some_and(|ext| ext == "dsl" || ext == "symbi") {
248248
let filename = path.file_name().unwrap().to_str().unwrap();
249249

250250
if filename.starts_with("invalid_") {

crates/repl-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "repl-cli"
3-
version = "0.1.0"
3+
version = "0.4.0"
44
edition = "2021"
55
authors = ["Jascha Wanger / ThirdKey.ai"]
66
description = "Command-line REPL interface for the Symbi platform"

crates/repl-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "repl-core"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
edition = "2021"
55
authors = ["Jascha Wanger / ThirdKey.ai"]
66
description = "Core REPL engine for the Symbi platform"

crates/repl-lsp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "repl-lsp"
3-
version = "0.1.0"
3+
version = "0.4.0"
44
edition = "2021"
55
authors = ["Jascha Wanger / ThirdKey.ai"]
66
description = "Language Server Protocol implementation for the Symbi platform"

crates/repl-proto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "repl-proto"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
edition = "2021"
55
authors = ["Jascha Wanger / ThirdKey.ai"]
66
description = "JSON-RPC wire protocol types for the Symbi platform"

0 commit comments

Comments
 (0)