Skip to content

Commit bf2791f

Browse files
committed
release: v1.0.0 - Complete release with Tauri desktop app
MAJOR RELEASE: Terraphim AI v1.0.0 Features: - Full Tauri desktop application with system tray support - Auto-updater with cryptographic signing - Global shortcuts (Ctrl+Shift+T) - Server and TUI command-line applications - All dependencies updated to v1.0.0 - Complete test coverage (162/162 tests passing) Desktop App: - System tray with role selection menu - Configuration wizard - Knowledge graph visualization - Chat interface with OpenRouter integration - Atomic server integration - 1Password support - MCP server integration Artifacts: - TerraphimDesktop_v1.0.0_aarch64.dmg (30MB) - Terraphim Desktop.app (100MB) - TerraphimServer.app (15MB) - TerraphimTUI.app (10MB) Platform: macOS ARM64 (Apple Silicon) Build: Release with optimizations Signing: Ad-hoc signed, updater keys generated
1 parent 7b93eac commit bf2791f

83 files changed

Lines changed: 1540 additions & 199 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Cargo.lock

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

crates/haystack_atlassian/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "atlassian_haystack"
3-
version = "0.2.0"
3+
version = "1.0.0"
44
edition = "2021"
55

66
[dependencies]

crates/haystack_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 = "haystack_core"
3-
version = "0.2.0"
3+
version = "1.0.0"
44
edition = "2024"
55

66
[dependencies]

crates/haystack_discourse/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "discourse_haystack"
3-
version = "0.2.0"
3+
version = "1.0.0"
44
edition = "2021"
55
authors = ["Terraphim"]
66
description = "A CLI client for fetching Discourse posts and messages"

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 = "jmap_client"
3-
version = "0.2.0"
3+
version = "1.0.0"
44
edition = "2021"
55

66
[dependencies]

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 = "0.2.0"
3+
version = "1.0.0"
44
edition = "2021"
55
authors = ["Terraphim Contributors"]
66
description = "Terraphim Markdown Parser"

crates/terraphim_agent_application/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_application"
3-
version = "0.2.0"
3+
version = "1.0.0"
44
edition = "2021"
55
description = "OTP-style application behavior for Terraphim agent system"
66
license = "MIT OR Apache-2.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 = "0.2.0"
3+
version = "1.0.0"
44
edition = "2021"
55

66
[dependencies]

crates/terraphim_agent_messaging/Cargo.toml

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

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

1818
# Core async runtime and utilities
1919
tokio = { workspace = true }

crates/terraphim_agent_registry/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "terraphim_agent_registry"
3-
version = "0.2.0"
3+
version = "1.0.0"
44
edition = "2021"
55
authors = ["Terraphim Contributors"]
66
description = "Knowledge graph-based agent registry for intelligent agent discovery and capability matching"
@@ -13,11 +13,11 @@ readme = "../../README.md"
1313

1414
[dependencies]
1515
# Core Terraphim dependencies
16-
terraphim_types = { path = "../terraphim_types", version = "0.2.0" }
17-
terraphim_automata = { path = "../terraphim_automata", version = "0.2.0" }
18-
terraphim_rolegraph = { path = "../terraphim_rolegraph", version = "0.2.0" }
19-
terraphim_agent_supervisor = { path = "../terraphim_agent_supervisor", version = "0.2.0" }
20-
terraphim_agent_messaging = { path = "../terraphim_agent_messaging", version = "0.2.0" }
16+
terraphim_types = { path = "../terraphim_types", version = "1.0.0" }
17+
terraphim_automata = { path = "../terraphim_automata", version = "1.0.0" }
18+
terraphim_rolegraph = { path = "../terraphim_rolegraph", version = "1.0.0" }
19+
terraphim_agent_supervisor = { path = "../terraphim_agent_supervisor", version = "1.0.0" }
20+
terraphim_agent_messaging = { path = "../terraphim_agent_messaging", version = "1.0.0" }
2121

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

0 commit comments

Comments
 (0)