diff --git a/CHANGELOG.md b/CHANGELOG.md index cebc02a..086f173 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [Version 0.6.2] - 2024-10-29 + +### Fixed + +- The "refetch" button must be shown when there was an error in the inference call. + ## [Version 0.6.1] - 2024-10-28 ### Changed diff --git a/package.json b/package.json index 4429d66..2ffd1ea 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ollama-grid-search", "private": true, - "version": "0.6.1", + "version": "0.6.2", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 44896b0..7256445 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grid-search-desktop" -version = "0.6.1" +version = "0.6.2" description = "A Tauri App to perform Grid Search and A/B testing experiments on LLMs" authors = ["dezoito"] license = "Whatever is in the repo" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 0593d88..e0bef32 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -7,7 +7,7 @@ }, "package": { "productName": "ollama-grid-search", - "version": "0.6.1" + "version": "0.6.2" }, "tauri": { "allowlist": { diff --git a/src/components/results/iteration-result.tsx b/src/components/results/iteration-result.tsx index 7f2d777..3e13600 100644 --- a/src/components/results/iteration-result.tsx +++ b/src/components/results/iteration-result.tsx @@ -135,6 +135,15 @@ export default function IterationResult(props: IProps) { {query.error && (