From 79639b67adcc296430556e0e0d3f57dcdd49e984 Mon Sep 17 00:00:00 2001
From: Mathijs de Bruin <mathijs@mathijsfietst.nl>
Date: Wed, 2 Oct 2024 17:41:02 +0100
Subject: [PATCH] Release prep for 1.3.0rc0 (#1392)

* Bump version for release.
* Changelog for 1.3.0rc0
---
 CHANGELOG.md           | 30 ++++++++++++++++++++++++++++++
 backend/pyproject.toml |  2 +-
 2 files changed, 31 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 55633368ac..7d721125d8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,36 @@ 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/).
 
+## [1.3.0rc0] - 2024-10-02
+
+### Added
+
+- SQLite support in SQLAlchemy integration (#1137)
+- Extensive test coverage for LiteralDataLayer and SQLAlchemyDataLayer
+- `get_element()` method to SQLAlchemyDataLayer (#1346)
+
+### Changed
+
+- Bumped LiteralAI dependency to version 0.0.625 (#1376)
+- Refactored LiteralDataLayer for improved performance and consistency
+- Refactored context handling in SQLAlchemy data layer (#1319)
+- Enhanced GitHub Actions workflow with restricted permissions (#1349)
+
+### Fixed
+
+- Resolved issues with SQLite database support (#1137)
+- Addressed automatic OAuth login after logout (#1362)
+- Various code style and linting improvements (#1353, #1348, #1347)
+
+### Development
+
+- Implemented LiteralToChainlitConverter class for handling conversions
+- Added comprehensive unit tests for data layer components
+- Improved import structure and removed unused imports
+- Updated README with latest project information (#1351)
+
+We encourage users to thoroughly test this release candidate, particularly the LiteralAI integration and history features, and provide feedback before the final 1.3.0 release.
+
 ## [1.2.0] - 2024-09-16
 
 ### Security
diff --git a/backend/pyproject.toml b/backend/pyproject.toml
index 5f6deda7ae..503bd6ed43 100644
--- a/backend/pyproject.toml
+++ b/backend/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "chainlit"
-version = "1.2.0"
+version = "1.3.0rc0"
 keywords = [
     'LLM',
     'Agents',