Use when asked to prepare new Flet release by bumping versions and author release notes.
Use flet-deprecation when release prep includes:
delete_version equals this release version,main and create a new branch named prepare-release-{new_version} from main.[#<issue_number>](<issue_url>) format in braces next to it. Do not add chore/trivial/duplicate items.
Every changelog item must include both related issue link(s) and PR link(s) when available (issue first, PR second). If no issue exists, include PR link(s) only.
Also include issue-only items when a change was done via direct commit without PR (for example, an issue referenced in commit context but no PR exists).
Every changelog item must include author attribution as plain text, not a Markdown link: by @<github_login>.
Place attribution at the end of each item after links, for example:
* Added feature X ([#123](...), [#456](...)) by @contributor.
Use PR author login for PR-based items. For issue-only direct-commit items, use the commit author GitHub login if available.
If one item groups multiple PRs by different authors, attribute all relevant authors:
by @user1, @user2.
Ensure that all inferred PRs and issues in the changelog have {version} milestone attached on GitHub.
If a related issue or PR is missing the {version} milestone, update the milestone on GitHub and keep the link in the changelog; do not omit issue links just because milestone metadata is missing.
As it's a Flutter package prefer items having changes on Flutter side.by @<github_login>.
Use PR author login for PR-based items. For issue-only direct-commit items, use the commit author GitHub login if available.
If a related issue or PR is missing the {version} milestone, update the milestone on GitHub and keep the link in the changelog; do not omit issue links just because milestone metadata is missing.Unreleased sections, not only the root ones:
/CHANGELOG.mdpackages/flet/CHANGELOG.mdsdk/python/packages/*/CHANGELOG.md
Recommended check command:
rg -n "^##\\s*\\[?Unreleased\\]?|^##\\s*Unreleased" -S CHANGELOG.md packages/flet/CHANGELOG.md sdk/python/packages/*/CHANGELOG.mdUnreleased section, convert that section into the new release section (## {new_version}), preserving and re-sorting its items. Do not leave duplicate release content in both Unreleased and {new_version}.
This conversion must be done for every matched changelog from the scan above.sdk/python/templates/ and automatically packaged as zip artifacts with the GitHub Release. No manual branch creation in external repos is needed.