Skip to content

Commit fae3fdc

Browse files
committed
Prepare 0.1.0a3 release
1 parent 21fe318 commit fae3fdc

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/deployment.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ python3.14 -m venv /tmp/tcx-testpypi
133133
/tmp/tcx-testpypi/bin/pip install \
134134
--index-url https://test.pypi.org/simple/ \
135135
--extra-index-url https://pypi.org/simple/ \
136-
tradingcodex==0.1.0a2
136+
tradingcodex==0.1.0a3
137137
rm -rf /tmp/tcx-testpypi-smoke
138138
mkdir -p /tmp/tcx-testpypi-smoke
139139
cd /tmp/tcx-testpypi-smoke
@@ -162,7 +162,7 @@ After the PyPI workflow completes:
162162

163163
```bash
164164
python3.14 -m venv /tmp/tcx-pypi
165-
/tmp/tcx-pypi/bin/pip install tradingcodex==0.1.0a2
165+
/tmp/tcx-pypi/bin/pip install tradingcodex==0.1.0a3
166166
rm -rf /tmp/tcx-pypi-smoke
167167
mkdir -p /tmp/tcx-pypi-smoke
168168
cd /tmp/tcx-pypi-smoke
@@ -174,7 +174,7 @@ cd /tmp/tcx-pypi-smoke
174174

175175
Use PEP 440 versions:
176176

177-
- `0.1.0a1`, `0.1.0a2` for alpha releases
177+
- `0.1.0a1`, `0.1.0a2`, `0.1.0a3` for alpha releases
178178
- `0.1.0b1` for beta releases
179179
- `0.1.0rc1` for release candidates
180180
- `0.1.0` only after install, docs, DB migration, and generated workspace

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "tradingcodex"
7-
version = "0.1.0a2"
7+
version = "0.1.0a3"
88
description = "Codex-native trading harness with a Django service plane and MCP execution boundary."
99
readme = "README.md"
1010
requires-python = ">=3.14,<3.15"

tests/test_python_migration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def test_init_current_directory_and_overwrite_language(tmp_path: Path) -> None:
185185

186186
assert f"TradingCodex workspace created: {workspace.resolve()}" in result.stdout
187187
assert (workspace / "tcx").exists()
188-
assert json.loads((workspace / ".tradingcodex" / "generated" / "module-lock.json").read_text(encoding="utf-8"))["tradingcodex_version"] == "0.1.0a2"
188+
assert json.loads((workspace / ".tradingcodex" / "generated" / "module-lock.json").read_text(encoding="utf-8"))["tradingcodex_version"] == "0.1.0a3"
189189

190190
repeated = run([sys.executable, "-m", "tradingcodex_cli", "init", "."], workspace, expect_ok=False, env_extra=env_extra)
191191
assert "--overwrite" in repeated.stderr

tradingcodex_cli/generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def bootstrap_workspace(project_dir: Path | str, force: bool = False, dry_run: b
5050
"SOURCE_ROOT": str(repo_root()),
5151
"PYTHON_EXECUTABLE": sys.executable,
5252
"GENERATED_AT": datetime.now(timezone.utc).isoformat().replace("+00:00", "Z"),
53-
"TRADINGCODEX_VERSION": "0.1.0a2",
53+
"TRADINGCODEX_VERSION": "0.1.0a3",
5454
"SUBAGENT_COUNT": str(len(subagents)),
5555
}
5656
result = {

tradingcodex_service/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__all__ = ["__version__"]
22

3-
__version__ = "0.1.0a1"
3+
__version__ = "0.1.0a3"

tradingcodex_service/domain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from typing import Any
1212

1313

14-
TRADINGCODEX_VERSION = "0.1.0a1"
14+
TRADINGCODEX_VERSION = "0.1.0a3"
1515
DEFAULT_MAX_SINGLE_ORDER_KRW = 100_000_000
1616
DEFAULT_ALLOWED_ADAPTERS = {"stub-execution", "paper-trading"}
1717
DEFAULT_PAPER_CASH_KRW = 100_000_000

workspace_templates/modules/codex-base/files/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "{{PROJECT_NAME}}"
3-
version = "0.1.0a2"
3+
version = "0.1.0a3"
44
requires-python = ">=3.14,<3.15"
55
dependencies = [
66
"django>=5.2,<5.3",

0 commit comments

Comments
 (0)