From 3b4d5691d7cdaf037aa5ae3ebd0a33bd993fa05a Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Wed, 24 Jul 2024 20:49:14 -0700 Subject: [PATCH] 1.16.6: Release. Fixes #604 --- README.md | 3 ++- docs/changelog.md | 3 ++- src/apps/news/news.data.tsx | 3 ++- src/apps/news/news.version.tsx | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index df3be089b..6a1202b39 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,9 @@ Or fork & run on Vercel [//]: # (big-AGI is an open book; see the **[ready-to-ship and future ideas](https://github.com/users/enricoros/projects/4/views/2)** in our open roadmap) -### What's New in 1.16.1...1.16.5 · Jul 18, 2024 (patch releases) +### What's New in 1.16.1...1.16.6 · Jul 25, 2024 (patch releases) +- 1.16.6: Groq support for Llama 3.1 models - 1.16.5: GPT-4o Mini support - 1.16.4: 8192 tokens support for Claude 3.5 Sonnet - 1.16.3: Anthropic Claude 3.5 Sonnet model support diff --git a/docs/changelog.md b/docs/changelog.md index 5d6f35db7..2ce8e7fff 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -10,8 +10,9 @@ by release. - milestone: [1.17.0](https://github.com/enricoros/big-agi/milestone/17) - work in progress: [big-AGI open roadmap](https://github.com/users/enricoros/projects/4/views/2), [help here](https://github.com/users/enricoros/projects/4/views/4) -### What's New in 1.16.1...1.16.5 · Jul 18, 2024 (patch releases) +### What's New in 1.16.1...1.16.6 · Jul 25, 2024 (patch releases) +- 1.16.6: Groq support for Llama 3.1 models - 1.16.5: GPT-4o Mini support - 1.16.4: 8192 tokens support for Claude 3.5 Sonnet - 1.16.3: Anthropic Claude 3.5 Sonnet model support diff --git a/src/apps/news/news.data.tsx b/src/apps/news/news.data.tsx index f67a63f95..8dff6dc7d 100644 --- a/src/apps/news/news.data.tsx +++ b/src/apps/news/news.data.tsx @@ -61,7 +61,7 @@ export const NewsItems: NewsItem[] = [ ] }*/ { - versionCode: '1.16.5', + versionCode: '1.16.6', versionName: 'Crystal Clear', versionDate: new Date('2024-06-07T05:00:00Z'), // versionDate: new Date('2024-05-13T19:00:00Z'), @@ -82,6 +82,7 @@ export const NewsItems: NewsItem[] = [ { text: <>1.16.3: Support for Claude 3.5 Sonnet (refresh your Anthropic models) }, { text: <>1.16.4: 8192 tokens support for Claude 3.5 Sonnet }, { text: <>1.16.5: OpenAI GPT-4o Mini support }, + { text: <>1.16.6: Groq Llama 3.1 support }, ], }, { diff --git a/src/apps/news/news.version.tsx b/src/apps/news/news.version.tsx index 20f6e8ef6..12cece6b3 100644 --- a/src/apps/news/news.version.tsx +++ b/src/apps/news/news.version.tsx @@ -7,7 +7,7 @@ import { useAppStateStore } from '~/common/state/store-appstate'; // update this variable every time you want to broadcast a new version to clients -export const incrementalNewsVersion: number = 16.1; // not notifying for 1.16.5 +export const incrementalNewsVersion: number = 16.1; // not notifying for 1.16.6 interface NewsState {