diff --git a/Cargo.toml b/Cargo.toml index a4ef3d4..f8f02c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aid" -version = "0.1.1" +version = "0.1.2" edition = "2021" [dependencies] diff --git a/README.md b/README.md index 30ceaa7..c186bf8 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass -Force ``` ### Releases -[Download the latest release v0.1.1 20/10/2024](https://github.com/Timmoth/aid-cli/releases/tag/aid-0.1.1) +[Download the latest release v0.1.2 20/10/2024](https://github.com/Timmoth/aid-cli/releases/tag/aid-0.1.2) ### Build If you'd like to build the latest version from source: diff --git a/install.ps1 b/install.ps1 index be1f8e2..9d7a973 100644 --- a/install.ps1 +++ b/install.ps1 @@ -1,5 +1,5 @@ # Set the download URL and target path -$downloadUrl = "https://github.com/Timmoth/aid-cli/releases/download/aid-0.1.1/aid-win.exe" +$downloadUrl = "https://github.com/Timmoth/aid-cli/releases/download/aid-0.1.2/aid-win.exe" $installDir = "C:\Program Files\AidCLI" $filename = "aid.exe" diff --git a/install.sh b/install.sh index 599d6b9..3667ab6 100644 --- a/install.sh +++ b/install.sh @@ -3,9 +3,9 @@ # Determine the operating system (Linux or macOS) OS="$(uname)" if [[ "$OS" == "Linux" ]]; then - URL="https://github.com/Timmoth/aid-cli/releases/download/aid-0.1.1/aid-linux" + URL="https://github.com/Timmoth/aid-cli/releases/download/aid-0.1.2/aid-linux" elif [[ "$OS" == "Darwin" ]]; then - URL="https://github.com/Timmoth/aid-cli/releases/download/aid-0.1.1/aid-mac" + URL="https://github.com/Timmoth/aid-cli/releases/download/aid-0.1.2/aid-mac" else echo "Error: Unsupported operating system." exit 1 diff --git a/src/csv_commands.rs b/src/csv_commands.rs index b87d98f..6f4aa13 100644 --- a/src/csv_commands.rs +++ b/src/csv_commands.rs @@ -41,9 +41,6 @@ pub async fn sql_search(sql: String, output_path: Option) { let result_row_count = result_rows.len(); output_results(result_rows, &result_headers, &output_path); - println!("Parsed {:?} in {:?}", query, parse_time); - println!("Loaded {} rows in {:?}", rows, load_time); - println!("Found {} rows in {:?}", result_row_count, query_time); if output_path.is_some() { // Log the query statistics