From e875984626958c8dd70a3252f90842fe8105efd3 Mon Sep 17 00:00:00 2001 From: Willy Douhard Date: Tue, 21 Jan 2025 12:37:57 +0100 Subject: [PATCH] chore: prepare release --- CHANGELOG.md | 12 ++++++++++++ backend/chainlit/version.py | 2 +- backend/pyproject.toml | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a0cc5b50e..b6c3ddb124 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ 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.0.5] - 2025-01-21 + +### Added + +- Chat GPT like commands +- Translation options. The translation schema has been simplified + +### Fixed + +- Warnings around file upload mime types +- `uvicorn` and `packaging` version requirement have been relaxed + ## [2.0.4] - 2025-01-17 ### Added diff --git a/backend/chainlit/version.py b/backend/chainlit/version.py index 21b2331475..9c9255f533 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.4" + __version__ = "2.0.5" diff --git a/backend/pyproject.toml b/backend/pyproject.toml index eef2db0bd2..1910b17942 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "chainlit" -version = "2.0.4" +version = "2.0.5" keywords = [ 'LLM', 'Agents',