diff --git a/README.md b/README.md index 21cf58f88..10996a82e 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,15 @@ 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 · May 13, 2024 (minor release, models support) +### What's New in 1.16.2 · Jun 7, 2024 (minor release) + +- Improve web downloads, as text, markdwon, or HTML +- Proper support for Gemini models +- Added the latest Mistral model +- Tokenizer support for gpt-4o +- Updates to Beam + +### What's New in 1.16.1 · May 13, 2024 (minor release) - Support for the new OpenAI GPT-4o 2024-05-13 model diff --git a/docs/changelog.md b/docs/changelog.md index 148e322ae..ba3a2a3ef 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -10,7 +10,15 @@ 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 · May 13, 2024 (minor release, models support) +### What's New in 1.16.2 · Jun 7, 2024 (minor release) + +- Improve web downloads, as text, markdwon, or HTML +- Proper support for Gemini models +- Added the latest Mistral model +- Tokenizer support for gpt-4o +- Updates to Beam + +### What's New in 1.16.1 · May 13, 2024 (minor release) - Support for the new OpenAI GPT-4o 2024-05-13 model diff --git a/src/apps/news/news.data.tsx b/src/apps/news/news.data.tsx index 30f5f6fba..0fe6eee40 100644 --- a/src/apps/news/news.data.tsx +++ b/src/apps/news/news.data.tsx @@ -61,9 +61,10 @@ export const NewsItems: NewsItem[] = [ ] }*/ { - versionCode: '1.16.1', + versionCode: '1.16.2', versionName: 'Crystal Clear', - versionDate: new Date('2024-05-13T19:00:00Z'), + versionDate: new Date('2024-06-07T05:00:00Z'), + // versionDate: new Date('2024-05-13T19:00:00Z'), // versionDate: new Date('2024-05-09T00:00:00Z'), versionCoverImage: coverV116, items: [ @@ -77,6 +78,7 @@ export const NewsItems: NewsItem[] = [ { text: <>Updated Anthropic*, Groq, Ollama, OpenAI*, OpenRouter*, and Perplexity }, { text: <>Developers: update LLMs data structures, dev: true }, { text: <>1.16.1: Support for OpenAI GPT-4o (refresh your OpenAI models) }, + { text: <>1.16.2: Proper Gemini support, HTML/Markdown downloads, and latest Mistral }, ], }, { diff --git a/src/apps/news/news.version.tsx b/src/apps/news/news.version.tsx index 29d6f97e3..a4915d342 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; +export const incrementalNewsVersion: number = 16.1; // not notifying for 16.2 interface NewsState {