Skip to content

Commit 83fc344

Browse files
refactor(build): code relationship mapping with 3 supporting modules
stats: lines: "+8/-11 (net -3)" files: 2 complexity: "Stable complexity"
1 parent de13932 commit 83fc344

File tree

5 files changed

+16
-14
lines changed

5 files changed

+16
-14
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.6] - 2026-03-26
11+
12+
### Other
13+
- Update Makefile
14+
1015
## [0.1.5] - 2026-03-26
1116

1217
### Other

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ ci-loop:
4949
echo "Usage: make ci-loop STRATEGY=<strategy.yaml> [BACKENDS=github,jira] [MAX_ITERATIONS=5]"; \
5050
exit 1; \
5151
fi
52-
sdlc-automation auto loop \
52+
entry auto loop \
5353
--strategy $(STRATEGY) \
5454
--project . \
5555
--backend $(or $(BACKENDS),github) \
@@ -75,7 +75,7 @@ format:
7575
example-github:
7676
@echo "Running example with GitHub backend..."
7777
@echo "Make sure GITHUB_TOKEN and GITHUB_REPO are set"
78-
sdlc-automation auto loop \
78+
entry auto loop \
7979
--strategy examples/strategies/onboarding.yaml \
8080
--project . \
8181
--backend github \
@@ -85,7 +85,7 @@ example-github:
8585
example-jira:
8686
@echo "Running example with Jira backend..."
8787
@echo "Make sure JIRA_URL, JIRA_EMAIL, JIRA_TOKEN, JIRA_PROJECT are set"
88-
sdlc-automation auto loop \
88+
entry auto loop \
8989
--strategy examples/strategies/ecommerce-mvp.yaml \
9090
--project . \
9191
--backend jira \
@@ -94,7 +94,7 @@ example-jira:
9494

9595
# Monitoring
9696
status:
97-
sdlc-automation auto ci-status
97+
entry auto ci-status
9898

9999
logs:
100100
docker-compose logs -f sprintstrat-runner
@@ -143,7 +143,7 @@ pipeline-docker:
143143
make docker-build
144144
docker-compose up -d
145145
sleep 10
146-
docker-compose exec sprintstrat-runner sdlc-automation auto loop \
146+
docker-compose exec sprintstrat-runner entry auto loop \
147147
--strategy /app/strategy.yaml \
148148
--project /workspace \
149149
--backend github \
@@ -152,7 +152,7 @@ pipeline-docker:
152152
# Advanced examples
153153
full-loop:
154154
@echo "Running full bug-fix loop with auto-fix..."
155-
sdlc-automation auto loop \
155+
entry auto loop \
156156
--strategy examples/strategies/onboarding.yaml \
157157
--project . \
158158
--backend github \
@@ -161,7 +161,7 @@ full-loop:
161161
--output full-loop-results.json
162162

163163
strategy-review:
164-
sdlc-automation strategy review \
164+
entry strategy review \
165165
--strategy examples/strategies/onboarding.yaml \
166166
--project . \
167167
--backend github

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.5
1+
0.1.6

pyproject.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "entry"
7-
version = "0.1.5"
7+
version = "0.1.6"
88
description = "SDLC automation platform - strategic project management with CI/CD integration and automated bug-fix loops"
99
readme = "README.md"
1010
license = "Apache-2.0"
@@ -31,7 +31,7 @@ dependencies = [
3131
]
3232

3333
[project.scripts]
34-
sdlc-automation = "strategy.cli.commands:main"
34+
entry = "strategy.cli.commands:main"
3535

3636
[project.optional-dependencies]
3737
github = ["PyGithub>=2.0"]
@@ -117,6 +117,3 @@ include_trailing_comma = true
117117
force_grid_wrap = 0
118118
use_parentheses = true
119119
ensure_newline_before_comments = true
120-
121-
[tool.setuptools]
122-
packages = ["strategy"]

strategy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
- CLI and API for applying and reviewing strategies
88
"""
99

10-
__version__ = "0.1.5"
10+
__version__ = "0.1.6"
1111
__author__ = "Tom Sapletta"
1212
__email__ = "tom@sapletta.com"
1313

0 commit comments

Comments
 (0)