Merge remote-tracking branch 'origin/release'

This commit is contained in:
Overhang.IO 2025-04-16 14:06:28 +00:00
commit df3864c5eb
4 changed files with 50 additions and 2 deletions

31
CHANGELOG.md Normal file
View File

@ -0,0 +1,31 @@
# Changelog
This file includes a history of past releases. Changes that were not yet added to a release are in the [changelog.d/](./changelog.d) folder.
<!--
⚠️ DO NOT ADD YOUR CHANGES TO THIS FILE! (unless you want to modify existing changelog entries in this file)
Changelog entries are managed by scriv. After you have made some changes to Tutor, create a changelog entry with:
make changelog-entry
Edit and commit the newly-created file in changelog.d.
If you need to create a new release, create a separate commit just for that. It is important to respect these
instructions, because git commits are used to generate release notes:
- Collect changelog entries with `make changelog`
- The title of the commit should be the same as the CHANGELOG.md file section title: "vX.Y.Z (year-month-day)".
- The commit message should be copy-pasted from the release section.
- Have a look at other release commits for reference.
-->
<!-- scriv-insert-here -->
<a id='changelog-19.0.1'></a>
## v19.0.1 (2025-04-16)
- [Bugfix] Include CSS files in built pypi assets. (by @regisb)
<a id='changelog-19.0.0'></a>
## v19.0.0 (2025-04-10)
- [Feature] Initial release 🌅 (by @mlabeeb03).

View File

@ -1 +0,0 @@
- [Improvement] Add hatch_build.py in sdist target to fix the installation issues (by @mlabeeb03)

18
changelog.d/scriv.ini Normal file
View File

@ -0,0 +1,18 @@
[scriv]
version = literal: tutormfe/__about__.py: __version__
categories =
format = md
md_header_level = 2
new_fragment_template =
<!--
Create a changelog entry for every new user-facing change. Please respect the following instructions:
- Indicate breaking changes by prepending an explosion 💥 character.
- Prefix your changes with either [Bugfix], [Improvement], [Feature], [Security], [Deprecation].
- You may optionally append "(by @<author>)" at the end of the line, where "<author>" is either one (just one)
of your GitHub username, real name or affiliated organization. These affiliations will be displayed in
the release notes for every release.
-->
<!-- - 💥[Feature] Foobarize the blorginator. This breaks plugins by renaming the `FOO_DO` filter to `BAR_DO`. (by @regisb) -->
<!-- - [Improvement] This is a non-breaking change. Life is good. (by @billgates) -->
entry_title_template = {%% if version %%}v{{ version }} {%% endif %%}({{ date.strftime('%%Y-%%m-%%d') }})

View File

@ -1 +1 @@
__version__ = "19.0.0"
__version__ = "19.0.1"