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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.2.5 - 2026-07-18

### Git cache

- Git cache refresh now advances HEAD to the remote default tip when `?ref=` is unset (CNA pull parity)
- Force-refresh when a configured template/extension `subdir` is missing from a warm cache (fixes post-rename `ManifestLoadError` for `all-github-setup` and friends)

## 0.2.4 - 2026-07-18

### Prompt rendering
Expand Down
4 changes: 2 additions & 2 deletions packages/create-awesome-python-app/pyproject.toml
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
[project]
name = "create-awesome-python-app"
version = "0.2.4"
version = "0.2.5"
description = "Composable scaffolding CLI for production-ready Python apps"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
dependencies = [
"create-python-app-core>=0.2.4",
"create-python-app-core>=0.2.5",
"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.4"
__version__ = "0.2.5"
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.4"
version = "0.2.5"
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.4"
__version__ = "0.2.5"
Loading