Skip to content

Commit ed20d3b

Browse files
author
Alex
committed
chore: bump version to 1.19.2
1 parent b409960 commit ed20d3b

28 files changed

Lines changed: 65 additions & 65 deletions

File tree

Cargo.lock

Lines changed: 26 additions & 26 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
@@ -44,7 +44,7 @@ exclude = [
4444
default-members = ["terraphim_server"]
4545

4646
[workspace.package]
47-
version = "1.19.1"
47+
version = "1.19.2"
4848
edition = "2024"
4949

5050
[workspace.dependencies]

crates/haystack_grepapp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
repository = "https://github.com/terraphim/terraphim-ai"
99

1010
[dependencies]
11-
haystack_core = { path = "../haystack_core", version = "1.19.1" }
11+
haystack_core = { path = "../haystack_core", version = "1.19.2" }
1212
terraphim_types = { path = "../terraphim_types", version = "1.0.0" }
1313
reqwest = { workspace = true, features = ["json", "rustls-tls"] }
1414

crates/haystack_jmap/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "haystack_jmap"
3-
version = "1.19.1"
3+
version = "1.19.2"
44
edition.workspace = true
55
license = "MIT"
66

crates/terraphim-markdown-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "terraphim-markdown-parser"
3-
version = "1.19.1"
3+
version = "1.19.2"
44
edition.workspace = true
55
authors = ["Terraphim Contributors"]
66
description = "Terraphim Markdown Parser"

crates/terraphim-session-analyzer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ tracing = { workspace = true }
7878
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
7979

8080
# Feature-gated Terraphim dependencies (sibling crates in workspace)
81-
terraphim_automata = { path = "../terraphim_automata", version = "1.19.1", optional = true }
81+
terraphim_automata = { path = "../terraphim_automata", version = "1.19.2", optional = true }
8282
terraphim_types = { path = "../terraphim_types", version = "1.0.0", optional = true }
8383
terraphim_config = { path = "../terraphim_config", version = "1.0.0", optional = true }
8484

crates/terraphim_agent/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ terraphim_types = { path = "../terraphim_types", version = "1.0.0" }
7272
terraphim_settings = { path = "../terraphim_settings", version = "1.0.0" }
7373
terraphim_persistence = { path = "../terraphim_persistence", version = "1.0.0" }
7474
terraphim_config = { path = "../terraphim_config", version = "1.0.0" }
75-
terraphim_automata = { path = "../terraphim_automata", version = "1.19.1" }
75+
terraphim_automata = { path = "../terraphim_automata", version = "1.19.2" }
7676
terraphim_service = { path = "../terraphim_service", version = "1.0.0", default-features = false }
7777
terraphim_middleware = { path = "../terraphim_middleware", version = "1.0.0" }
7878
terraphim_rolegraph = { path = "../terraphim_rolegraph", version = "1.0.0" }

crates/terraphim_agent_evolution/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "terraphim_agent_evolution"
3-
version = "1.19.1"
3+
version = "1.19.2"
44
edition.workspace = true
55
license = "MIT"
66

crates/terraphim_agent_messaging/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "terraphim_agent_messaging"
3-
version = "1.19.1"
3+
version = "1.19.2"
44
edition.workspace = true
55
authors = ["Terraphim Contributors"]
66
description = "Erlang-style asynchronous message passing system for AI agents"
@@ -12,7 +12,7 @@ license = "Apache-2.0"
1212
readme = "../../README.md"
1313

1414
[dependencies]
15-
terraphim_agent_supervisor = { path = "../terraphim_agent_supervisor", version = "1.19.1" }
15+
terraphim_agent_supervisor = { path = "../terraphim_agent_supervisor", version = "1.19.2" }
1616
terraphim_types = { path = "../terraphim_types", version = "1.0.0" }
1717

1818
# Core async runtime and utilities

crates/terraphim_agent_registry/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "terraphim_agent_registry"
3-
version = "1.19.1"
3+
version = "1.19.2"
44
edition.workspace = true
55
authors = ["Terraphim Contributors"]
66
description = "Knowledge graph-based agent registry for intelligent agent discovery and capability matching"
@@ -14,10 +14,10 @@ readme = "../../README.md"
1414
[dependencies]
1515
# Core Terraphim dependencies
1616
terraphim_types = { path = "../terraphim_types", version = "1.0.0" }
17-
terraphim_automata = { path = "../terraphim_automata", version = "1.19.1" }
17+
terraphim_automata = { path = "../terraphim_automata", version = "1.19.2" }
1818
terraphim_rolegraph = { path = "../terraphim_rolegraph", version = "1.0.0" }
19-
terraphim_agent_supervisor = { path = "../terraphim_agent_supervisor", version = "1.19.1" }
20-
terraphim_agent_messaging = { path = "../terraphim_agent_messaging", version = "1.19.1" }
19+
terraphim_agent_supervisor = { path = "../terraphim_agent_supervisor", version = "1.19.2" }
20+
terraphim_agent_messaging = { path = "../terraphim_agent_messaging", version = "1.19.2" }
2121

2222
# Core async runtime and utilities
2323
tokio = { workspace = true }

0 commit comments

Comments
 (0)