Skip to content

Commit 98dc973

Browse files
authored
chore: release (#2296)
1 parent c47a0cc commit 98dc973

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to Chainlit will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## [2.6.2] - 2025-07-16
8+
9+
Technical release due to missed `frontend` and `copilot` folders in previous one.
10+
711
## [2.6.1] - 2025-07-15
812

913
### Added

backend/chainlit/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
except metadata.PackageNotFoundError:
66
# Case where package metadata is not available, default to a 'non-outdated' version.
77
# Ref: config.py::load_settings()
8-
__version__ = "2.6.1"
8+
__version__ = "2.6.2"

backend/pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "chainlit"
3-
version = "2.6.1"
3+
version = "2.6.2"
44
keywords = [
55
'LLM',
66
'Agents',
@@ -30,7 +30,10 @@ classifiers = [
3030
repository = "https://github.com/Chainlit/chainlit"
3131
readme = "README.md"
3232
exclude = ["chainlit/frontend/**/*", "chainlit/copilot/**/**/"]
33-
include = ["chainlit/frontend/dist/**/*", "chainlit/copilot/dist/**/*"]
33+
include = [
34+
{ path = "chainlit/frontend/dist/**/*", format = ["sdist", "wheel"] },
35+
{ path = "chainlit/copilot/dist/**/*", format = ["sdist", "wheel"] }
36+
]
3437

3538
[tool.poetry.scripts]
3639
# command_name = module_for_handler : function_for_handler

0 commit comments

Comments
 (0)