Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ instructions, because git commits are used to generate release notes:

<!-- scriv-insert-here -->

<a id='changelog-21.0.0'></a>
## v21.0.0 (2025-10-01)

- [Improvement] Migrate from pylint and black to ruff. (by @mlabeeb03)
- [Improvement] Test python package distribution build when running make test. (by @mlabeeb03)

- 💥[Feature] Upgrade to Ulmo. (by @mlabeeb03)

<a id='changelog-20.0.0'></a>
## v20.0.0 (2025-06-02)

Expand Down
2 changes: 0 additions & 2 deletions changelog.d/20250808_150533_muhammad.labeeb_release.md

This file was deleted.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"tutor>=20.0.0,<21.0.0",
"tutor>=21.0.0,<22.0.0",
"quart",
"aiofiles",
"markdown",
Expand All @@ -39,7 +39,7 @@ dynamic = ["version"]

[project.optional-dependencies]
dev = [
"tutor[dev]>=20.0.0,<21.0.0",
"tutor[dev]>=21.0.0,<22.0.0",
"types-aiofiles",
"types-Markdown",
"ruff",
Expand Down
2 changes: 1 addition & 1 deletion tutordeck/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "20.1.0"
__version__ = "21.0.0"
Loading