Skip to content

Commit e7fe043

Browse files
chore(release): 0.7.1-dev.2
## <small>0.7.1-dev.2 (2025-12-15)</small> * Merge branch 'feat/codex-support' into dev ([b82bf0f](b82bf0f)) * chore: augment code ignore __reports__/ ([bed11cd](bed11cd)) * chore: remove dev debug scripts ([f1880ce](f1880ce)) * chore: remove dev reports ([8c3f455](8c3f455)) * chore: update gitignore ([cd1934a](cd1934a)) * docs(cli): add host labels to configure command help ([842e771](842e771)) * docs(codex): add CLI reference and usage examples ([a68e932](a68e932)) * docs(codex): update to mention support for Codex ([7fa2bdb](7fa2bdb)) * docs(reports): add implementation completion report ([7b67225](7b67225)) * docs(reports): codex CLI enhancement analysis and implementation ([c5327d2](c5327d2)) * docs(reports): dev specs for Codex MCP config support via Hatch! ([330c683](330c683)) * test(codex): add comprehensive CLI argument tests ([0e15301](0e15301)) * test(codex): fix Omni model field name in conversion test ([21efc10](21efc10)) * feat(codex): add CLI arguments for Codex ([88e81fe](88e81fe)) * feat(codex): add MCPServerConfigCodex model and infrastructure ([061ae53](061ae53)) * feat(codex): add tomli-w dependency for TOML support ([00b960f](00b960f)) * feat(codex): implement CodexHostStrategy with TOML support ([4e55b34](4e55b34)) * feat(mcp-models): map shared tool filtering flags to Codex ([b2e6103](b2e6103)) * fix(backup): preserve original filename in backup creation ([c2dde46](c2dde46)) * fix(codex): map http_headers to universal headers field ([7c5e2cb](7c5e2cb)) * tests(codex): add comprehensive Codex host strategy test suite ([2858ba5](2858ba5))
1 parent b82bf0f commit e7fe043

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## <small>0.7.1-dev.2 (2025-12-15)</small>
2+
3+
* Merge branch 'feat/codex-support' into dev ([b82bf0f](https://github.com/CrackingShells/Hatch/commit/b82bf0f))
4+
* chore: augment code ignore __reports__/ ([bed11cd](https://github.com/CrackingShells/Hatch/commit/bed11cd))
5+
* chore: remove dev debug scripts ([f1880ce](https://github.com/CrackingShells/Hatch/commit/f1880ce))
6+
* chore: remove dev reports ([8c3f455](https://github.com/CrackingShells/Hatch/commit/8c3f455))
7+
* chore: update gitignore ([cd1934a](https://github.com/CrackingShells/Hatch/commit/cd1934a))
8+
* docs(cli): add host labels to configure command help ([842e771](https://github.com/CrackingShells/Hatch/commit/842e771))
9+
* docs(codex): add CLI reference and usage examples ([a68e932](https://github.com/CrackingShells/Hatch/commit/a68e932))
10+
* docs(codex): update to mention support for Codex ([7fa2bdb](https://github.com/CrackingShells/Hatch/commit/7fa2bdb))
11+
* docs(reports): add implementation completion report ([7b67225](https://github.com/CrackingShells/Hatch/commit/7b67225))
12+
* docs(reports): codex CLI enhancement analysis and implementation ([c5327d2](https://github.com/CrackingShells/Hatch/commit/c5327d2))
13+
* docs(reports): dev specs for Codex MCP config support via Hatch! ([330c683](https://github.com/CrackingShells/Hatch/commit/330c683))
14+
* test(codex): add comprehensive CLI argument tests ([0e15301](https://github.com/CrackingShells/Hatch/commit/0e15301))
15+
* test(codex): fix Omni model field name in conversion test ([21efc10](https://github.com/CrackingShells/Hatch/commit/21efc10))
16+
* feat(codex): add CLI arguments for Codex ([88e81fe](https://github.com/CrackingShells/Hatch/commit/88e81fe))
17+
* feat(codex): add MCPServerConfigCodex model and infrastructure ([061ae53](https://github.com/CrackingShells/Hatch/commit/061ae53))
18+
* feat(codex): add tomli-w dependency for TOML support ([00b960f](https://github.com/CrackingShells/Hatch/commit/00b960f))
19+
* feat(codex): implement CodexHostStrategy with TOML support ([4e55b34](https://github.com/CrackingShells/Hatch/commit/4e55b34))
20+
* feat(mcp-models): map shared tool filtering flags to Codex ([b2e6103](https://github.com/CrackingShells/Hatch/commit/b2e6103))
21+
* fix(backup): preserve original filename in backup creation ([c2dde46](https://github.com/CrackingShells/Hatch/commit/c2dde46))
22+
* fix(codex): map http_headers to universal headers field ([7c5e2cb](https://github.com/CrackingShells/Hatch/commit/7c5e2cb))
23+
* tests(codex): add comprehensive Codex host strategy test suite ([2858ba5](https://github.com/CrackingShells/Hatch/commit/2858ba5))
24+
125
## <small>0.7.1-dev.1 (2025-12-15)</small>
226

327
* Merge branch 'feat/kiro-support' into dev ([d9c11ca](https://github.com/CrackingShells/Hatch/commit/d9c11ca))

pyproject.toml

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

55
[project]
66
name = "hatch-xclam"
7-
version = "0.7.1-dev.1"
7+
version = "0.7.1-dev.2"
88
description = "Package manager for the Cracking Shells ecosystem"
99
readme = "README.md"
1010
requires-python = ">=3.12"
@@ -20,7 +20,7 @@ dependencies = [
2020
"docker>=7.1.0",
2121
"pydantic>=2.0.0",
2222
"hatch-validator>=0.8.0",
23-
"tomli-w>=1.0.0" # TOML writing (tomllib built-in for reading in Python 3.12+)
23+
"tomli-w>=1.0.0"
2424
]
2525

2626
[[project.authors]]

0 commit comments

Comments
 (0)