Skip to content
Merged
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
# Changelog

## 0.2.12 - 2026-07-28

### Packaging

- Add PyPI `keywords` and Trove `classifiers` to `create-awesome-python-app` and `create-python-app-core` `pyproject.toml` so the packages are discoverable on PyPI by scaffold/fastapi/django/celery/typer/uv/cli themes and filtered by Python version, license, and topic (#246).

## Unreleased

### Packaging

Check failure on line 11 in CHANGELOG.md

View workflow job for this annotation

GitHub Actions/ markdownlint

Multiple headings with the same content

CHANGELOG.md:11 MD024/no-duplicate-heading Multiple headings with the same content [Context: "Packaging"] https://github.com/DavidAnson/markdownlint/blob/v0.41.1/doc/md024.md

- Add PyPI `keywords` and Trove `classifiers` to `create-awesome-python-app` and `create-python-app-core` `pyproject.toml` so the packages are discoverable on PyPI by scaffold/fastapi/django/celery/typer/uv/cli themes and filtered by Python version, license, and topic (#246).

Expand Down
4 changes: 2 additions & 2 deletions packages/create-awesome-python-app/pyproject.toml
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
[project]
name = "create-awesome-python-app"
version = "0.2.11"
version = "0.2.12"
description = "Composable scaffolding CLI for production-ready Python apps"
readme = "README.md"
requires-python = ">=3.12"
Expand DownExpand Up@@ -35,7 +35,7 @@ classifiers = [
"Typing :: Typed",
]
dependencies = [
"create-python-app-core>=0.2.10",
"create-python-app-core>=0.2.12",
"questionary>=2.1.1",
"rich>=15.0.0",
"typer>=0.27.0",
Expand Down
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
"""Create Awesome Python App CLI."""

__version__ = "0.2.11"
__version__ = "0.2.12"
2 changes: 1 addition & 1 deletion packages/create-python-app-core/pyproject.toml
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
[project]
name = "create-python-app-core"
version = "0.2.10"
version = "0.2.12"
description = "Scaffolding engine for Create Awesome Python App"
readme = "README.md"
requires-python = ">=3.12"
Expand Down
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
__version__ = "0.2.10"
__version__ = "0.2.12"
Loading