diff --git a/README.md b/README.md
index 970f8fbdf..399da50e3 100644
--- a/README.md
+++ b/README.md
@@ -17,18 +17,23 @@ Or fork & run on Vercel
## 👉 [roadmap](https://github.com/users/enricoros/projects/4/views/2) 👉 [installation](docs/installation.md) 👉 [documentation](docs/README.md)
+> Note: bigger better features (incl. Beam-2) are being cooked outside of `main`.
+
[//]: # (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.15.1 · April 10, 2024 (minor release, models support)
+### What's New in 1.16.0 · May 9, 2024 · Crystal Clear
-- Support for the newly released Gemini Pro 1.5 models
-- Support for the new OpenAI 2024-04-09 Turbo models
-- Ctrl+S and Ctrl+O to save/load chats on desktop
-- Resilience fixes after the large success of 1.15.0
+- [Beam](https://big-agi.com/blog/beam-multi-model-ai-reasoning) core and UX improvements based on user feedback
+- Chat cost estimation 💰 (enable it in Labs / hover the token counter)
+- Major enhancements to the Auto-Diagrams tool
+- Save/load chat files with Ctrl+S / Ctrl+O on desktop
+- YouTube Transcriber Persona for chatting with video content, [#500](https://github.com/enricoros/big-AGI/pull/500)
+- Improved formula rendering (LaTeX), and dark-mode diagrams, [#508](https://github.com/enricoros/big-AGI/issues/508), [#520](https://github.com/enricoros/big-AGI/issues/520)
+- More: code soft-wrap, chat text selection toolbar, 3x faster on Apple silicon, [#517](https://github.com/enricoros/big-AGI/issues/517), [507](https://github.com/enricoros/big-AGI/pull/507)
+- Update Anthropic, Groq, Ollama, OpenAI, OpenRouter, Perplexity models
+- Developers: update the LLMs data structures
-> Note: Beam-2 and new larger features are being cooked outside of `main`.
-
-### 3,000 Commits Milestone · April 7, 2024
+#### 3,000 Commits Milestone · April 7, 2024

@@ -42,6 +47,7 @@ Or fork & run on Vercel
- Message **Starring ⭐**: star important messages within chats, to attach them later. [#476](https://github.com/enricoros/big-AGI/issues/476)
- Enhanced the default Persona
- Fixes to Gemini models and SVGs, improvements to UI and icons
+- 1.15.1: Support for Gemini Pro 1.5 and OpenAI Turbo models
- Beast release, over 430 commits, 10,000+ lines changed: [release notes](https://github.com/enricoros/big-AGI/releases/tag/v1.15.0), and changes [v1.14.1...v1.15.0](https://github.com/enricoros/big-AGI/compare/v1.14.1...v1.15.0)
### What's New in 1.14.1 · March 7, 2024 · Modelmorphic
diff --git a/docs/changelog.md b/docs/changelog.md
index ddce93b8f..e53fa90e9 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -10,6 +10,24 @@ by release.
- milestone: [1.16.0](https://github.com/enricoros/big-agi/milestone/16)
- 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.0 · May 9, 2024 · Crystal Clear
+
+- [Beam](https://big-agi.com/blog/beam-multi-model-ai-reasoning) core and UX improvements based on user feedback
+- Chat cost estimation 💰 (enable it in Labs / hover the token counter)
+- Major enhancements to the Auto-Diagrams tool
+- Save/load chat files with Ctrl+S / Ctrl+O on desktop
+- YouTube Transcriber Persona for chatting with video content, [#500](https://github.com/enricoros/big-AGI/pull/500)
+- Improved formula rendering (LaTeX), and dark-mode diagrams, [#508](https://github.com/enricoros/big-AGI/issues/508), [#520](https://github.com/enricoros/big-AGI/issues/520)
+- More: code soft-wrap, chat text selection toolbar, 3x faster on Apple silicon, [#517](https://github.com/enricoros/big-AGI/issues/517), [507](https://github.com/enricoros/big-AGI/pull/507)
+- Update Anthropic, Groq, Ollama, OpenAI, OpenRouter, Perplexity models
+- Developers: update the LLMs data structures
+
+### What's New in 1.15.1 · April 10, 2024 (minor release, models support)
+
+- Support for the newly released Gemini Pro 1.5 models
+- Support for the new OpenAI 2024-04-09 Turbo models
+- Resilience fixes after the large success of 1.15.0
+
### What's New in 1.15.0 · April 1, 2024 · Beam
- ⚠️ [**Beam**: the multi-model AI chat](https://big-agi.com/blog/beam-multi-model-ai-reasoning). find better answers, faster - a game-changer for brainstorming, decision-making, and creativity. [#443](https://github.com/enricoros/big-AGI/issues/443)
diff --git a/src/apps/news/news.data.tsx b/src/apps/news/news.data.tsx
index 0901ecbbb..1c0903625 100644
--- a/src/apps/news/news.data.tsx
+++ b/src/apps/news/news.data.tsx
@@ -72,7 +72,7 @@ export const NewsItems: NewsItem[] = [
{ text: <>YouTube Transcriber persona: chat with videos>, issue: 500 },
{ text: <>Improved formula render, dark-mode diagrams>, issue: 508 },
{ text: <>More: code soft-wrap, selection toolbar, 3x faster on Apple silicon>, issue: 507 },
- { text: <>Update Anthropic, Groq, Ollama, OpenAI, OpenRouter, Perplexity models> },
+ { text: <>Updated Anthropic, Groq, Ollama, OpenAI, OpenRouter, Perplexity models> },
{ text: <>Developers: update LLMs data structures>, dev: true },
],
},