From cb9f71872c8d3d35cfb7fa584ab4f06151e6bd83 Mon Sep 17 00:00:00 2001 From: Dane Schneider Date: Sun, 14 Apr 2024 13:41:49 -0700 Subject: [PATCH] Bump version to 0.8.4 --- app/server/version.txt | 2 +- releases/server/CHANGELOG.md | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/app/server/version.txt b/app/server/version.txt index ee94dd83..b60d7196 100644 --- a/app/server/version.txt +++ b/app/server/version.txt @@ -1 +1 @@ -0.8.3 +0.8.4 diff --git a/releases/server/CHANGELOG.md b/releases/server/CHANGELOG.md index e0df482f..0cccf31c 100644 --- a/releases/server/CHANGELOG.md +++ b/releases/server/CHANGELOG.md @@ -1,3 +1,10 @@ +## Version 0.8.4 +- Add support for new OpenAI models: `gpt-4-turbo` and `gpt-4-turbo-2024-04-09` +- Make `gpt-4-turbo` model the new default model for the planner, builder, and auto-continue roles -- in testing it seems to be better at reasoning and significantly less lazy than the previous default for these roles, `gpt-4-turbo-preview` -- any plan that has not previously had its model settings modified will now use `gpt-4-turbo` by default (those that have been modified will need to be updated manually) -- remember that you can always use `plandex set-model` to change models for your plans +- Fix for handling files that are loaded into context and later deleted from the file system (https://github.com/plandex-ai/plandex/issues/47) +- Handle file paths with ### prefixes (https://github.com/plandex-ai/plandex/issues/77) +- Fix for occasional race condition during file builds that causes error "Fatal: Unable to write new index file" + ## Version 0.8.3 - SMTP_FROM environment variable for setting from address when self-hosting and using SMTP (https://github.com/plandex-ai/plandex/pull/39) - Add support for OPENAI_ENDPOINT environment variable for custom OpenAI endpoints (https://github.com/plandex-ai/plandex/pull/46)