Skip to content

Commit

Permalink
Merge branch 'main' into dedupe-mws
Browse files Browse the repository at this point in the history
  • Loading branch information
ChuckHend authored Dec 20, 2023
2 parents 82567ab + 1e5881e commit c349feb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tembo-cli/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion tembo-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
workspace = { members = ["temboclient"] }
[package]
name = "tembo-cli"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
authors = ["Tembo.io"]
description = "The CLI for Tembo"
Expand All @@ -12,6 +12,10 @@ repository = "https://github.com/tembo-io/tembo-cli"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[[bin]]
name = "tembo"
path = "src/main.rs"

[dependencies]
anyhow = "1.0.71"
clap = { version = "4.3.12", features = ["cargo", "wrap_help"] }
Expand Down
2 changes: 1 addition & 1 deletion tembo-cli/tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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-cli";
const CARGO_BIN: &str = "tembo";

#[test]
fn help() -> Result<(), Box<dyn std::error::Error>> {
Expand Down

0 comments on commit c349feb

Please sign in to comment.