From 0723486b62b47df291bfd8bc0c885824d8bd019b Mon Sep 17 00:00:00 2001 From: Willy Douhard Date: Mon, 3 Feb 2025 10:54:49 -0800 Subject: [PATCH] chore: release (#1850) * chore: release * chore: changelog --- CHANGELOG.md | 10 ++++++++++ backend/chainlit/version.py | 2 +- backend/pyproject.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 905570b783..10c4b36365 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ 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.1] - 2025-02-03 + +### Fixed + +- Reintroduce including URL location after UI refactor +- Ensure SAS token start time is set to UTC +- Prevent showing 0's on resumed thread if AskAction/File was used +- Remove 22px element ref height +- Update Microsoft OAuth offline_access scope to be fully qualified with the prefix + ## [2.1.0] - 2025-01-30 ### Added diff --git a/backend/chainlit/version.py b/backend/chainlit/version.py index 54479303f5..814f03c8af 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.1.0" + __version__ = "2.1.1" diff --git a/backend/pyproject.toml b/backend/pyproject.toml index c7dca56f1d..bcc4f5ba05 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "chainlit" -version = "2.1.0" +version = "2.1.1" keywords = [ 'LLM', 'Agents',