diff --git a/Cargo.lock b/Cargo.lock index 785e39b..977501b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -295,7 +295,7 @@ dependencies = [ [[package]] name = "codeprompt" -version = "0.1.4" +version = "0.1.5" dependencies = [ "anyhow", "arboard", diff --git a/Cargo.toml b/Cargo.toml index 4ae5a86..53859de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codeprompt" -version = "0.1.4" +version = "0.1.5" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/README.md b/README.md index f80493d..c7725c7 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,8 @@ This was a project to brush up on Rust and is based on [code2prompt](https://git --- +:star: New in `v0.1.5`: Tab completions are now supported! + ## Why Code Prompts? Manually copy and pasting code and code snippets to LLMs has several issues: diff --git a/src/main.rs b/src/main.rs index 6a6435f..8c2a36d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -11,7 +11,7 @@ use std::path::PathBuf; /// Command-line arguments for the codeprompt application. #[derive(Parser, Debug)] -#[clap(name = "codeprompt", version = "0.1.4")] +#[clap(name = "codeprompt", version = "0.1.5")] struct Args { /// #[command(subcommand)]