Skip to content

Commit ec89691

Browse files
committed
Bump version to 0.2.7
1 parent 3bca742 commit ec89691

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

crates/weave-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "weave-cli"
3-
version = "0.2.6"
3+
version = "0.2.7"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Entity-level semantic merge CLI. Resolves conflicts at the function/class level instead of lines."
@@ -15,8 +15,8 @@ name = "weave"
1515
path = "src/main.rs"
1616

1717
[dependencies]
18-
weave-core = { path = "../weave-core", version = "0.2.6" }
19-
weave-crdt = { path = "../weave-crdt", version = "0.2.6" }
18+
weave-core = { path = "../weave-core", version = "0.2.7" }
19+
weave-crdt = { path = "../weave-crdt", version = "0.2.7" }
2020
sem-core = "0.3.12"
2121
clap = { version = "4", features = ["derive"] }
2222
colored = "3"

crates/weave-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 = "weave-core"
3-
version = "0.2.6"
3+
version = "0.2.7"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Entity-level semantic merge engine. Three-way merge at the function/class/method level instead of lines."

crates/weave-crdt/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "weave-crdt"
3-
version = "0.2.6"
3+
version = "0.2.7"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "CRDT-based coordination for multi-agent code editing. Entity-level claims, conflict detection, and version tracking."
@@ -16,7 +16,7 @@ test-helpers = []
1616
[dependencies]
1717
automerge = "0.7"
1818
sem-core = "0.3.12"
19-
weave-core = { path = "../weave-core", version = "0.2.6" }
19+
weave-core = { path = "../weave-core", version = "0.2.7" }
2020
serde = { version = "1", features = ["derive"] }
2121
serde_json = "1"
2222
thiserror = "2"

crates/weave-driver/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "weave-driver"
3-
version = "0.2.6"
3+
version = "0.2.7"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Git merge driver for entity-level semantic merging. Drop-in replacement for git's default merge strategy."
@@ -11,9 +11,9 @@ categories = ["command-line-utilities", "development-tools"]
1111
readme = "../../README.md"
1212

1313
[dependencies]
14-
weave-core = { path = "../weave-core", version = "0.2.6" }
14+
weave-core = { path = "../weave-core", version = "0.2.7" }
1515
sem-core = "0.3.12"
16-
weave-crdt = { path = "../weave-crdt", version = "0.2.6", optional = true }
16+
weave-crdt = { path = "../weave-crdt", version = "0.2.7", optional = true }
1717
serde_json = "1"
1818
env_logger = "0.11"
1919
log = "0.4"

crates/weave-github/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "weave-github"
3-
version = "0.2.6"
3+
version = "0.2.7"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "GitHub webhook handler for entity-level semantic merges"
@@ -11,7 +11,7 @@ name = "weave-github"
1111
path = "src/main.rs"
1212

1313
[dependencies]
14-
weave-core = { version = "0.2.6", path = "../weave-core" }
14+
weave-core = { version = "0.2.7", path = "../weave-core" }
1515
sem-core = "0.3.12"
1616
axum = "0.8"
1717
tokio = { version = "1", features = ["full"] }

crates/weave-mcp/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "weave-mcp"
3-
version = "0.2.6"
3+
version = "0.2.7"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "MCP server for entity-level semantic merge coordination. 15 tools for agents to claim, merge, and resolve conflicts."
@@ -15,8 +15,8 @@ name = "weave-mcp"
1515
path = "src/main.rs"
1616

1717
[dependencies]
18-
weave-core = { path = "../weave-core", version = "0.2.6" }
19-
weave-crdt = { path = "../weave-crdt", version = "0.2.6" }
18+
weave-core = { path = "../weave-core", version = "0.2.7" }
19+
weave-crdt = { path = "../weave-crdt", version = "0.2.7" }
2020
sem-core = "0.3.12"
2121
lru = "0.16"
2222
rmcp = { version = "1", features = ["server", "transport-io"] }

0 commit comments

Comments
 (0)