From c7d734518818be946e40ec44644b8b098dd557ab Mon Sep 17 00:00:00 2001 From: AT Date: Fri, 20 Dec 2024 13:37:38 -0500 Subject: [PATCH] Release notes for v3.6.1 and bump version (#3339) Signed-off-by: Adam Treat --- gpt4all-chat/CMakeLists.txt | 4 ++-- gpt4all-chat/metadata/latestnews.md | 4 ++++ gpt4all-chat/metadata/release.json | 5 +++++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/gpt4all-chat/CMakeLists.txt b/gpt4all-chat/CMakeLists.txt index 281a3672..b69a9610 100644 --- a/gpt4all-chat/CMakeLists.txt +++ b/gpt4all-chat/CMakeLists.txt @@ -4,9 +4,9 @@ include(../common/common.cmake) set(APP_VERSION_MAJOR 3) set(APP_VERSION_MINOR 6) -set(APP_VERSION_PATCH 1) +set(APP_VERSION_PATCH 2) set(APP_VERSION_BASE "${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}.${APP_VERSION_PATCH}") -set(APP_VERSION "${APP_VERSION_BASE}") +set(APP_VERSION "${APP_VERSION_BASE}-dev0") project(gpt4all VERSION ${APP_VERSION_BASE} LANGUAGES CXX C) diff --git a/gpt4all-chat/metadata/latestnews.md b/gpt4all-chat/metadata/latestnews.md index 2875bf04..218c2262 100644 --- a/gpt4all-chat/metadata/latestnews.md +++ b/gpt4all-chat/metadata/latestnews.md @@ -1,5 +1,9 @@ ## Latest News +GPT4All v3.6.1 was released on December 20th and fixes issues with the stop generation and copy conversation buttons which were broken in v3.6.0. + +--- + GPT4All v3.6.0 was released on December 19th. Changes include: * **Reasoner v1:** diff --git a/gpt4all-chat/metadata/release.json b/gpt4all-chat/metadata/release.json index c1c70b10..2c1eef3a 100644 --- a/gpt4all-chat/metadata/release.json +++ b/gpt4all-chat/metadata/release.json @@ -253,5 +253,10 @@ "version": "3.6.0", "notes": "* **Reasoner v1:**\n * Built-in javascript code interpreter tool.\n * Custom curated model that utilizes the code interpreter to break down, analyze, perform, and verify complex reasoning tasks.\n* **Templates:** Automatically substitute chat templates that are not compatible with Jinja2Cpp in GGUFs.\n* **Fixes:**\n * Remote model template to allow for XML in messages.\n * Jinja2Cpp bug that broke system message detection in chat templates.\n * LocalDocs sources displaying in unconsolidated form after v3.5.0.", "contributors": "* Adam Treat (Nomic AI)\n* Jared Van Bortel (Nomic AI)" + }, + { + "version": "3.6.1", + "notes": "* **Fixes:**\n * The stop generation button no longer working in v3.6.0.\n * The copy entire conversation button no longer working in v3.6.0.", + "contributors": "* Adam Treat (Nomic AI)" } ]