diff --git a/Cargo.lock b/Cargo.lock index 7ce1eb1..cd8e4df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -692,7 +692,7 @@ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" [[package]] name = "mangpt" -version = "0.2.0" +version = "0.2.1" dependencies = [ "async-openai", "clap", diff --git a/Cargo.toml b/Cargo.toml index 9e9e3a8..17c427b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mangpt" -version = "0.2.0" +version = "0.2.1" description = "CLI program to ask ChatGPT how to use other CLI programs" authors = ["Oliver Koch "] repository = "https://github.com/oltoko/mangpt" diff --git a/src/main.rs b/src/main.rs index d5ca81f..78e92c9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -28,6 +28,7 @@ async fn main() -> Result<(), Box> { }; chatgpt::fetch_answer(config, tool, question).await?; + println!(); Ok(()) }