Skip to content

Commit fbf5f0f

Browse files
committed
chore: release v0.18.0
1 parent a90f90f commit fbf5f0f

14 files changed

Lines changed: 32 additions & 32 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ members = [
1414
]
1515

1616
[workspace.package]
17-
version = "0.17.2"
17+
version = "0.18.0"
1818
edition = "2021"
1919
license = "MIT"
2020
authors = ["phodal"]

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "routa-desktop",
3-
"version": "0.17.2",
3+
"version": "0.18.0",
44
"private": true,
55
"scripts": {
66
"dev": "npm run tauri dev",

apps/desktop/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "routa-desktop"
3-
version = "0.17.2"
3+
version = "0.18.0"
44
description = "Routa.js Desktop - Multi-agent coordination platform"
55
authors = ["phodal"]
66
edition = "2021"

apps/desktop/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-config-schema/schema.json",
33
"productName": "Routa Desktop",
4-
"version": "0.17.2",
4+
"version": "0.18.0",
55
"identifier": "com.routa.desktop",
66
"build": {
77
"beforeDevCommand": "cd ../.. && npm run dev",

crates/harness-monitor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "harness-monitor"
3-
version = "0.17.2"
3+
version = "0.18.0"
44
edition = "2021"
55
license.workspace = true
66
authors.workspace = true
@@ -19,7 +19,7 @@ clap = { version = "4", features = ["derive", "env"] }
1919
crossterm = "0.28"
2020
rusqlite = { version = "0.32", features = ["bundled"] }
2121
ratatui = "0.29"
22-
entrix = { version = "0.17.2", path = "../entrix" }
22+
entrix = { version = "0.18.0", path = "../entrix" }
2323
trace-parser = { path = "../trace-parser" }
2424
serde = { version = "1", features = ["derive"] }
2525
serde_json = "1"

crates/routa-cli/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "routa-cli"
3-
version = "0.17.2"
3+
version = "0.18.0"
44
description = "Routa.js CLI — command-line interface for multi-agent coordination"
55
authors = ["phodal"]
66
edition = "2021"
@@ -18,13 +18,13 @@ path = "src/lib.rs"
1818

1919
[dependencies]
2020
# Core domain (transport-agnostic, no HTTP deps)
21-
routa-core = { version = "0.17.2", path = "../routa-core" }
21+
routa-core = { version = "0.18.0", path = "../routa-core" }
2222

2323
# HTTP server (for the `server` subcommand)
24-
routa-server = { version = "0.17.2", path = "../routa-server" }
24+
routa-server = { version = "0.18.0", path = "../routa-server" }
2525

2626
# Reusable scanner module
27-
routa-scanner = { version = "0.17.2", path = "../routa-scanner" }
27+
routa-scanner = { version = "0.18.0", path = "../routa-scanner" }
2828

2929
# CLI argument parsing
3030
clap = { version = "4", features = ["derive", "env"] }

crates/routa-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 = "routa-core"
3-
version = "0.17.2"
3+
version = "0.18.0"
44
description = "Routa.js core domain — models, stores, protocols, and JSON-RPC (transport-agnostic)"
55
authors = ["phodal"]
66
edition = "2021"

crates/routa-rpc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "routa-rpc"
3-
version = "0.17.2"
3+
version = "0.18.0"
44
description = "Transport-agnostic JSON-RPC 2.0 layer for Routa.js — enables JS bindgen"
55
authors = ["phodal"]
66
edition = "2021"
@@ -14,4 +14,4 @@ path = "src/lib.rs"
1414

1515
[dependencies]
1616
# Core domain only — no HTTP framework needed
17-
routa-core = { version = "0.17.2", path = "../routa-core" }
17+
routa-core = { version = "0.18.0", path = "../routa-core" }

crates/routa-scanner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "routa-scanner"
3-
version = "0.17.2"
3+
version = "0.18.0"
44
edition = "2021"
55
license = "MIT"
66
description = "Reusable multi-tool security and quality scanning module for Routa"

crates/routa-server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "routa-server"
3-
version = "0.17.2"
3+
version = "0.18.0"
44
description = "Routa.js HTTP Server — axum adapter on top of routa-core"
55
authors = ["phodal"]
66
edition = "2021"
@@ -14,7 +14,7 @@ path = "src/lib.rs"
1414

1515
[dependencies]
1616
# Core domain (with axum IntoResponse support)
17-
routa-core = { version = "0.17.2", path = "../routa-core", features = ["axum"] }
17+
routa-core = { version = "0.18.0", path = "../routa-core", features = ["axum"] }
1818

1919
# Feature trace & session analysis
2020
feature-trace = { path = "../feature-trace" }

0 commit comments

Comments
 (0)