Skip to content

Commit e9864f4

Browse files
committed
fix versioning
1 parent c98ec4c commit e9864f4

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

bin/router/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ name = "hive_router"
1616
path = "src/main.rs"
1717

1818
[dependencies]
19-
hive-router-query-planner = { path = "../../lib/query-planner", version = "0" }
20-
hive-router-plan-executor = { path = "../../lib/executor", version = "0" }
21-
hive-router-config = { path = "../../lib/router-config", version = "0" }
19+
hive-router-query-planner = { path = "../../lib/query-planner", version = "0.0.1" }
20+
hive-router-plan-executor = { path = "../../lib/executor", version = "0.0.1" }
21+
hive-router-config = { path = "../../lib/router-config", version = "0.0.1" }
2222

2323
tokio = { workspace = true }
2424
futures = { workspace = true }

lib/executor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ authors = ["The Guild"]
1212
[lib]
1313

1414
[dependencies]
15-
hive-router-query-planner = { path = "../query-planner", version = "0" }
16-
hive-router-config = { path = "../router-config", version = "0" }
15+
hive-router-query-planner = { path = "../query-planner", version = "0.0.1" }
16+
hive-router-config = { path = "../router-config", version = "0.0.1" }
1717

1818
graphql-parser = { workspace = true }
1919
graphql-tools = { workspace = true }

release-plz.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,11 @@ publish = false
1818
name = "subgraphs"
1919
release = false
2020
publish = false
21+
22+
[[package]]
23+
name = "hive-router"
24+
changelog_include = [
25+
"hive-router-plan-executor",
26+
"hive-router-config",
27+
"hive-router-query-planner",
28+
]

0 commit comments

Comments
 (0)