diff --git a/CHANGELOG.md b/CHANGELOG.md index f8224a1..affbdd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. +## [Version 0.5.1] - 2024-07-10 + +### Added + +- Added Clippy checks when saving Rust code. +- Corrected existing Rust code to pass Clippy checks. +- Improved UI for component that displays inference parameters with collapsible prompts. + +### Changed + +- Fixes generation responses not returning metadata (like `eval_duration`, `total_duration`, `eval_count`). +- Added Rust CI checks. +- Fixed padding in "Expand/Hide" buttons for params and metadate. +- `keep-alive` parameter for generation is set to Ollama's default (instead of `indefinitely`). + ## [Version 0.5.0] - 2024-05-10 ### Added diff --git a/package.json b/package.json index cc2e24c..e6add7d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ollama-grid-search", "private": true, - "version": "0.5.0", + "version": "0.5.1", "type": "module", "scripts": { "dev": "vite", diff --git a/todo.md b/todo.md index eca73d2..022ce0c 100644 --- a/todo.md +++ b/todo.md @@ -89,6 +89,7 @@ https://github.com/tauri-apps/plugins-workspace/tree/v1/plugins/single-instance [ok] - Add versioning to the JSON log files, starting at this release's version. --- v0.5.1 +[ok] - Fixes generation responses not returning metadata (like eval_duration, total_duration, eval_count). [ok] - Added Rust CI [ok] - Added Clippy checks when saving Rust code [ok] - Corrected existing Rust code to pass Clippy checks