Skip to content

Commit d828693

Browse files
authored
Merge pull request #430 from lbedner/v0.5.1-rc2
v0.5.1-rc2
2 parents cf00521 + 2ec807a commit d828693

6 files changed

Lines changed: 7 additions & 5 deletions

File tree

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Each generated project includes:
3232

3333
## Installation
3434

35-
**Current Version**: v0.5.1-rc1
35+
**Current Version**: v0.5.1-rc2
3636

3737
```bash
3838
pip install aegis-stack

aegis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Aegis Stack CLI - Component generation and project management tools.
33
"""
44

5-
__version__ = "0.5.1-rc1"
5+
__version__ = "0.5.1-rc2"

aegis/commands/update.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
import typer
1313

14+
from .. import __version__ as aegis_version
1415
from ..constants import AnswerKeys
1516
from ..core.copier_manager import is_copier_project, load_copier_answers
1617
from ..core.copier_updater import (
@@ -319,6 +320,7 @@ def update_command(
319320
# This is critical for Copier's git tracking detection to work correctly
320321
run_update(
321322
dst_path=str(target_path),
323+
data={"aegis_version": aegis_version}, # Update to current CLI version
322324
defaults=True, # Use existing answers as defaults
323325
overwrite=True, # Allow overwriting files
324326
conflict="rej", # Create .rej files for conflicts

copier.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# - Update support
77

88
_min_copier_version: "9.0.0"
9-
_version: "0.5.1-rc1"
9+
_version: "0.5.1-rc2"
1010

1111
# IMPORTANT: Template content is in subdirectory
1212
# This allows the template to be recognized as git-tracked (aegis-stack repo root has .git)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "aegis-stack"
3-
version = "0.5.1-rc1"
3+
version = "0.5.1-rc2"
44
description = "A production-ready Python foundation for builders who refuse to wait. Try: uvx aegis-stack init my-project"
55
readme = "README.md"
66
requires-python = ">=3.11,<3.15"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)