Skip to content

Commit

Permalink
Released v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Timmoth committed Oct 20, 2024
1 parent 4048162 commit cba14fd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aid"
version = "0.1.1"
version = "0.1.2"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion install.ps1
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions src/csv_commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ pub async fn sql_search(sql: String, output_path: Option<String>) {
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
Expand Down

0 comments on commit cba14fd

Please sign in to comment.