Merge pull request #15 from overhangio/v20.0.0

This commit is contained in:
Ahmed Khalid 2025-06-27 18:23:04 +05:00 committed by GitHub
commit c719af6ecd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 15 additions and 7 deletions

View File

@ -20,6 +20,18 @@ instructions, because git commits are used to generate release notes:
<!-- scriv-insert-here -->
<a id='changelog-20.0.0'></a>
## v20.0.0 (2025-06-02)
- [Bugfix] Add logs script to all pages so each page can handle completion of a command itself and not delegate it to a page with logs script. (by @mlabeeb03)
- [Improvement] Remove the `last-log-file` cookie and use `is_thread_alive` function to check the status of running commands. (by @mlabeeb03)
- [Feature] Only allow command cancellation from relevant page. (by @mlabeeb03)
- [Feature] Add link to developer panel while command is in progress. (by @mlabeeb03)
- 💥[Feature] Upgrade to Teak. (by @mlabeeb03)
<a id='changelog-19.0.2'></a>
## v19.0.2 (2025-04-16)

View File

@ -1 +0,0 @@
- [Bugfix] Add logs script to all pages so each page can handle completion of a command itself and not delegate it to a page with logs script. (by @mlabeeb03)

View File

@ -1 +0,0 @@
- [Improvement] Remove the `last-log-file` cookie and use `is_thread_alive` function to check the status of running commands. (by @mlabeeb03)

View File

@ -1,2 +0,0 @@
- [Feature] Only allow command cancellation from relevant page. (by @mlabeeb03)
- [Feature] Add link to developer panel while command is in progress. (by @mlabeeb03)

View File

@ -27,7 +27,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"tutor>=19.0.1,<20.0.0",
"tutor>=20.0.0,<21.0.0",
"quart",
"aiofiles",
"markdown",
@ -39,7 +39,7 @@ dynamic = ["version"]
[project.optional-dependencies]
dev = [
"tutor[dev]>=19.0.1,<20.0.0",
"tutor[dev]>=20.0.0,<21.0.0",
"types-aiofiles",
"types-Markdown",
"pylint",

View File

@ -1 +1 @@
__version__ = "19.0.2"
__version__ = "20.0.0"