From c83ba56d15a849a7458b5185c968f582ad426f74 Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Tue, 21 Jan 2025 16:46:21 -0500 Subject: [PATCH 1/2] Bump version for 3.6.2 release. Signed-off-by: Adam Treat --- gpt4all-chat/CHANGELOG.md | 2 +- gpt4all-chat/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gpt4all-chat/CHANGELOG.md b/gpt4all-chat/CHANGELOG.md index 46936f21b448..16b412f91f23 100644 --- a/gpt4all-chat/CHANGELOG.md +++ b/gpt4all-chat/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). -## [Unreleased] +## [3.6.2] - 2025-01-21 ### Added - Add support for the Windows ARM64 target platform (CPU-only) ([#3385](https://github.com/nomic-ai/gpt4all/pull/3385)) diff --git a/gpt4all-chat/CMakeLists.txt b/gpt4all-chat/CMakeLists.txt index 02ec2401c9ea..65409130cba0 100644 --- a/gpt4all-chat/CMakeLists.txt +++ b/gpt4all-chat/CMakeLists.txt @@ -6,7 +6,7 @@ set(APP_VERSION_MAJOR 3) set(APP_VERSION_MINOR 6) set(APP_VERSION_PATCH 2) set(APP_VERSION_BASE "${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}.${APP_VERSION_PATCH}") -set(APP_VERSION "${APP_VERSION_BASE}-dev0") +set(APP_VERSION "${APP_VERSION_BASE}") project(gpt4all VERSION ${APP_VERSION_BASE} LANGUAGES CXX C) From d9e34990d7cf8a7142cba29f59e69d7a1e619098 Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Tue, 21 Jan 2025 17:25:22 -0500 Subject: [PATCH 2/2] Make it 3.7.0. Signed-off-by: Adam Treat --- gpt4all-chat/CHANGELOG.md | 2 +- gpt4all-chat/CMakeLists.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gpt4all-chat/CHANGELOG.md b/gpt4all-chat/CHANGELOG.md index 16b412f91f23..d73d7e7ae608 100644 --- a/gpt4all-chat/CHANGELOG.md +++ b/gpt4all-chat/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). -## [3.6.2] - 2025-01-21 +## [3.7.0] - 2025-01-21 ### Added - Add support for the Windows ARM64 target platform (CPU-only) ([#3385](https://github.com/nomic-ai/gpt4all/pull/3385)) diff --git a/gpt4all-chat/CMakeLists.txt b/gpt4all-chat/CMakeLists.txt index 65409130cba0..0d4a6e1509f9 100644 --- a/gpt4all-chat/CMakeLists.txt +++ b/gpt4all-chat/CMakeLists.txt @@ -3,8 +3,8 @@ cmake_minimum_required(VERSION 3.25) # for try_compile SOURCE_FROM_VAR include(../common/common.cmake) set(APP_VERSION_MAJOR 3) -set(APP_VERSION_MINOR 6) -set(APP_VERSION_PATCH 2) +set(APP_VERSION_MINOR 7) +set(APP_VERSION_PATCH 0) set(APP_VERSION_BASE "${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}.${APP_VERSION_PATCH}") set(APP_VERSION "${APP_VERSION_BASE}")