Skip to content

Commit cdf6380

Browse files
authored
Merge pull request #21 from mwananchi-tech/fix/use-separate-cli-command-name
chore: Prep releases; separate binary name for ondelazm-cli (just odn…
2 parents 223e2a2 + 520f93b commit cdf6380

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

Cargo.lock

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

crates/odnelazm-cli/Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
[package]
22
name = "odnelazm-cli"
33
description = "Command Line Interface for interacting with scraped data from odnelazm"
4-
version = "1.0.0-beta.3"
4+
version = "1.0.0-beta.4"
55
readme = "README.md"
66
authors.workspace = true
77
edition.workspace = true
88
categories.workspace = true
99
repository.workspace = true
1010
license.workspace = true
1111

12+
[[bin]]
13+
name = "odnelazm"
14+
path = "./src/main.rs"
15+
1216
[dependencies]
1317
chrono = "0.4.43"
1418
clap = { version = "4.5.59", features = ["derive"] }
1519
env_logger = "0.11.6"
1620
log = "0.4.22"
17-
odnelazm = { version = "1.0.0-beta.4", path = "../odnelazm" }
21+
odnelazm = { version = "1.0.0-beta.5", path = "../odnelazm" }
1822
serde = "1.0.228"
1923
serde_json = "1.0.149"
2024
tokio = { version = "1.49.0", features = ["macros", "rt-multi-thread"] }

crates/odnelazm-mcp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "odnelazm-mcp"
3-
version = "1.0.0-beta.1"
3+
version = "1.0.0-beta.2"
44
description = "A MCP server that allows LLM clients to interact with Kenyan parliementary sittings data"
55
authors.workspace = true
66
edition.workspace = true
@@ -21,7 +21,7 @@ anyhow = "1.0"
2121
axum = "0.8.8"
2222
env_logger = "0.11.9"
2323
log = "0.4.29"
24-
odnelazm = { version = "1.0.0-beta.4", path = "../odnelazm" }
24+
odnelazm = { version = "1.0.0-beta.5", path = "../odnelazm" }
2525
rmcp = { version = "0.16", features = [
2626
"server",
2727
"transport-io",

crates/odnelazm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "odnelazm"
33
description = "A mzalendo.com web scaraper and parser"
4-
version = "1.0.0-beta.4"
4+
version = "1.0.0-beta.5"
55
readme = "README.md"
66
authors.workspace = true
77
edition.workspace = true

0 commit comments

Comments
 (0)