From 446c85900df375779c1d85f8ba49c9b984b0ed90 Mon Sep 17 00:00:00 2001 From: Adarsh Shah Date: Tue, 19 Dec 2023 09:44:28 -0500 Subject: [PATCH 1/2] includes tembo-cli in cargo publish gh action (#432) --- .github/workflows/cargo_publish.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/cargo_publish.yml b/.github/workflows/cargo_publish.yml index 93491475c..943a9cdd4 100644 --- a/.github/workflows/cargo_publish.yml +++ b/.github/workflows/cargo_publish.yml @@ -29,7 +29,6 @@ jobs: # in a pull request, and using all directories on the release # or main branches. changed_relative_to_ref: origin/${{ github.base_ref || 'not-a-branch' }} - ignore_dirs: "tembo-cli" cargo_publish: From 582333c927444b22f17eec01a4c1f66c09a24378 Mon Sep 17 00:00:00 2001 From: Adarsh Shah Date: Tue, 19 Dec 2023 10:04:47 -0500 Subject: [PATCH 2/2] renames cli package to tembo-cli (#433) --- tembo-cli/Cargo.lock | 2 +- tembo-cli/Cargo.toml | 2 +- tembo-cli/tests/integration_tests.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tembo-cli/Cargo.lock b/tembo-cli/Cargo.lock index 8025ffceb..7510994b9 100644 --- a/tembo-cli/Cargo.lock +++ b/tembo-cli/Cargo.lock @@ -3162,7 +3162,7 @@ dependencies = [ ] [[package]] -name = "tembo" +name = "tembo-cli" version = "0.8.0" dependencies = [ "anyhow", diff --git a/tembo-cli/Cargo.toml b/tembo-cli/Cargo.toml index 6524badee..9afcbca61 100644 --- a/tembo-cli/Cargo.toml +++ b/tembo-cli/Cargo.toml @@ -1,6 +1,6 @@ workspace = { members = ["temboclient"] } [package] -name = "tembo" +name = "tembo-cli" version = "0.8.0" edition = "2021" authors = ["Tembo.io"] diff --git a/tembo-cli/tests/integration_tests.rs b/tembo-cli/tests/integration_tests.rs index 103322f73..83e374af1 100644 --- a/tembo-cli/tests/integration_tests.rs +++ b/tembo-cli/tests/integration_tests.rs @@ -2,7 +2,7 @@ use assert_cmd::prelude::*; // Add methods on commands use predicates::prelude::*; // Used for writing assertions use std::process::Command; // Run programs -const CARGO_BIN: &str = "tembo"; +const CARGO_BIN: &str = "tembo-cli"; #[test] fn help() -> Result<(), Box> {