Skip to content

Commit 301f80b

Browse files
committed
Update version to 0.27.4.
1 parent f7a277e commit 301f80b

27 files changed

Lines changed: 73 additions & 73 deletions

File tree

net/crates/net/Cargo.lock

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

net/crates/net/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ members = [
1717

1818
[package]
1919
name = "net-mesh"
20-
version = "0.27.3"
20+
version = "0.27.4"
2121
edition = "2021"
2222
description = "High-performance, schema-agnostic, backend-agnostic event bus"
2323
license = "Apache-2.0"

net/crates/net/aggregator-daemon/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "net-aggregator-daemon"
3-
version = "0.27.3"
3+
version = "0.27.4"
44
edition = "2021"
55
description = "Long-running daemon that hosts net-mesh AggregatorRegistry + aggregator groups"
66
license = "Apache-2.0"
@@ -18,14 +18,14 @@ path = "src/main.rs"
1818
[dependencies]
1919
# Substrate primitives — aggregator + lifecycle + registry +
2020
# RPC service all live behind the SDK's `net` feature surface.
21-
net-sdk = { package = "net-mesh-sdk", version = "0.27.3", path = "../sdk", default-features = false, features = [
21+
net-sdk = { package = "net-mesh-sdk", version = "0.27.4", path = "../sdk", default-features = false, features = [
2222
"net",
2323
"nat-traversal",
2424
] }
2525
# Direct dep on the underlying crate so the binary can reach
2626
# the typed surfaces the SDK doesn't re-export (AggregatorConfig,
2727
# LifecycleGroup, etc).
28-
net = { package = "net-mesh", version = "0.27.3", path = ".." }
28+
net = { package = "net-mesh", version = "0.27.4", path = ".." }
2929

3030
# Argv parsing.
3131
clap = { version = "4", features = ["derive", "env"] }

net/crates/net/bindings/go/compute-ffi/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "net-compute-ffi"
3-
version = "0.27.3"
3+
version = "0.27.4"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "C ABI compute (MeshDaemon + migration) surface for the Go binding of Net"
@@ -45,11 +45,11 @@ test-helpers = []
4545
# through the wrong layout — a subtle UB that surfaces as garbage in
4646
# the GPU vendor field on `find_nodes`. Keep these in sync with the
4747
# Go binding's documented build command.
48-
net = { package = "net-mesh", version = "0.27.3", path = "../../..", features = ["net", "netdb", "redex-disk", "tool"] }
48+
net = { package = "net-mesh", version = "0.27.4", path = "../../..", features = ["net", "netdb", "redex-disk", "tool"] }
4949
# SDK compute surface — `DaemonRuntime`, `DaemonHandle`,
5050
# `MigrationHandle`, `StateSnapshot`. The Go FFI delegates to this
5151
# layer so all three language bindings stay behavior-aligned.
52-
net-sdk = { package = "net-mesh-sdk", version = "0.27.3", path = "../../../sdk", features = ["net", "compute", "groups"] }
52+
net-sdk = { package = "net-mesh-sdk", version = "0.27.4", path = "../../../sdk", features = ["net", "compute", "groups"] }
5353
tokio = { version = "1.48", features = ["rt-multi-thread", "sync", "time"] }
5454
bytes = "1"
5555
dashmap = "6"

net/crates/net/bindings/go/deck-ffi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "net-deck-ffi"
3-
version = "0.27.3"
3+
version = "0.27.4"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "C ABI Deck operator-side SDK for the Go binding of Net"
@@ -24,7 +24,7 @@ default = []
2424
# `deck` feature pulls in `meshos` transitively; we list both
2525
# explicitly so the dep chain is self-documenting at the crate
2626
# boundary.
27-
net = { package = "net-mesh", version = "0.27.3", path = "../../..", default-features = false, features = ["meshos"] }
27+
net = { package = "net-mesh", version = "0.27.4", path = "../../..", default-features = false, features = ["meshos"] }
2828
parking_lot = "0.12"
2929
tokio = { version = "1.48", features = ["rt-multi-thread", "sync", "time"] }
3030
futures = "0.3"

net/crates/net/bindings/go/meshdb-ffi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "net-meshdb-ffi"
3-
version = "0.27.3"
3+
version = "0.27.4"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "C ABI MeshDB query layer for the Go binding of Net"
@@ -26,7 +26,7 @@ default = []
2626
# over an in-memory ChainReader), so the feature list stays minimal
2727
# — Phase B+ slices that wire the federated transport will add
2828
# `net` here.
29-
net = { package = "net-mesh", version = "0.27.3", path = "../../..", default-features = false, features = ["meshdb"] }
29+
net = { package = "net-mesh", version = "0.27.4", path = "../../..", default-features = false, features = ["meshdb"] }
3030
parking_lot = "0.12"
3131
tokio = { version = "1.48", features = ["rt-multi-thread", "sync", "time"] }
3232
futures = "0.3"

net/crates/net/bindings/go/meshos-ffi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "net-meshos-ffi"
3-
version = "0.27.3"
3+
version = "0.27.4"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "C ABI MeshOS daemon-author SDK for the Go binding of Net"
@@ -23,7 +23,7 @@ default = []
2323
# Substrate-side MeshOS SDK + the daemon trait. Pulls in
2424
# `compute` for `MeshDaemon` and `meshos` for the supervisor runtime;
2525
# the latter implies `cortex` per the substrate's feature gating.
26-
net = { package = "net-mesh", version = "0.27.3", path = "../../..", default-features = false, features = ["meshos"] }
26+
net = { package = "net-mesh", version = "0.27.4", path = "../../..", default-features = false, features = ["meshos"] }
2727
tokio = { version = "1.48", features = ["rt-multi-thread", "sync", "time"] }
2828
bytes = "1.11"
2929
parking_lot = "0.12"

net/crates/net/bindings/go/rpc-ffi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "net-rpc-ffi"
3-
version = "0.27.3"
3+
version = "0.27.4"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "C ABI nRPC surface for the Go binding of Net"
@@ -32,7 +32,7 @@ tool = ["net/tool"]
3232
# both cdylibs export the same `#[no_mangle]` FFI symbols and the
3333
# Go test binary's link order resolves them — diverging features
3434
# corrupt shared types' layouts.
35-
net = { package = "net-mesh", version = "0.27.3", path = "../../..", features = ["net", "netdb", "redex-disk"] }
35+
net = { package = "net-mesh", version = "0.27.4", path = "../../..", features = ["net", "netdb", "redex-disk"] }
3636
tokio = { version = "1.48", features = ["rt-multi-thread", "sync", "time"] }
3737
bytes = "1"
3838
parking_lot = "0.12"

net/crates/net/bindings/node/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "net-node"
3-
version = "0.27.3"
3+
version = "0.27.4"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Node.js bindings for Net event bus"
@@ -135,8 +135,8 @@ aggregator = ["net", "dep:net-sdk", "net-sdk/aggregator"]
135135
meshdb = ["net/meshdb", "dep:postcard"]
136136

137137
[dependencies]
138-
net = { package = "net-mesh", version = "0.27.3", path = "../..", default-features = false }
139-
net-sdk = { package = "net-mesh-sdk", version = "0.27.3", path = "../../sdk", default-features = false, optional = true }
138+
net = { package = "net-mesh", version = "0.27.4", path = "../..", default-features = false }
139+
net-sdk = { package = "net-mesh-sdk", version = "0.27.4", path = "../../sdk", default-features = false, optional = true }
140140
dashmap = { version = "6", optional = true }
141141
parking_lot = "0.12"
142142
napi = { version = "3.7.0", default-features = false, features = ["napi4", "napi6", "async", "tokio_rt"] }

net/crates/net/bindings/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@net-mesh/core",
3-
"version": "0.27.3",
3+
"version": "0.27.4",
44
"description": "High-performance, schema-agnostic event bus for AI runtime workloads",
55
"main": "index.js",
66
"types": "index.d.ts",

0 commit comments

Comments
 (0)