From 59691b4493834a18ace3221d9508a674a7e1c6bf Mon Sep 17 00:00:00 2001
From: Willy Douhard <willy.douhard@gmail.com>
Date: Thu, 30 Jan 2025 10:05:20 -0800
Subject: [PATCH] chore: prepare release (#1834)

---
 CHANGELOG.md                | 15 +++++++++++++++
 backend/chainlit/version.py |  2 +-
 backend/pyproject.toml      |  2 +-
 3 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9fdf71c43b..905570b783 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,21 @@ All notable changes to Chainlit will be documented in this file.
 
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
 
+## [2.1.0] - 2025-01-30
+
+### Added
+
+- You can now send toasts with `cl.context.emitter.send_toast`
+- Markdown now supports alerts
+- Theme options are now translatable
+- Copilot can now load custom css
+
+### Fixed
+
+- Mounting Chainlit as a sub app should no longer break the parent's app endpoints
+- Pasting text in the chat input should now remove extra formatting and preserve new lines
+
+
 ## [2.0.603] - 2025-01-28
 
 ### Added
diff --git a/backend/chainlit/version.py b/backend/chainlit/version.py
index 4833944808..54479303f5 100644
--- a/backend/chainlit/version.py
+++ b/backend/chainlit/version.py
@@ -5,4 +5,4 @@
 except metadata.PackageNotFoundError:
     # Case where package metadata is not available, default to a 'non-outdated' version.
     # Ref: config.py::load_settings()
-    __version__ = "2.0.603"
+    __version__ = "2.1.0"
diff --git a/backend/pyproject.toml b/backend/pyproject.toml
index 28124b1d52..c7dca56f1d 100644
--- a/backend/pyproject.toml
+++ b/backend/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "chainlit"
-version = "2.0.603"
+version = "2.1.0"
 keywords = [
     'LLM',
     'Agents',