Skip to content

Commit f3ca7e2

Browse files
committed
chore: bump release version to 0.7.9
1 parent fc5097c commit f3ca7e2

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

plugins/codex-self-evolution/.codex-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codex-self-evolution",
3-
"version": "0.7.8",
3+
"version": "0.7.9",
44
"description": "Session-level self-evolution loop with stable memory, session reflection, focused session recall, and csep-reflect skill generation.",
55
"author": {
66
"name": "T0UGH",

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 = "codex-self-evolution-plugin"
7-
version = "0.7.8"
7+
version = "0.7.9"
88
description = "Self-evolution loop for OpenAI Codex: session reflection, session recall, and reflection-generated skills with zero runtime dependencies."
99
readme = "README.md"
1010
requires-python = ">=3.11"

src/codex_self_evolution/plugin_bundle/.codex-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codex-self-evolution",
3-
"version": "0.7.8",
3+
"version": "0.7.9",
44
"description": "Session-level self-evolution loop with stable memory, session reflection, focused session recall, and csep-reflect skill generation.",
55
"author": {
66
"name": "T0UGH",

tests/test_install_script.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,18 @@ def test_install_script_uses_uv_tool_and_cleans_only_managed_hooks(tmp_path):
9494
]
9595
assert commands == ["third-party stop"]
9696

97+
expected_version = json.loads(
98+
(ROOT / "plugins" / "codex-self-evolution" / ".codex-plugin" / "plugin.json").read_text(
99+
encoding="utf-8"
100+
)
101+
)["version"]
97102
plugin_manifest = (
98103
fake_codex
99104
/ "plugins"
100105
/ "cache"
101106
/ "codex-self-evolution"
102107
/ "codex-self-evolution"
103-
/ "0.7.8"
108+
/ expected_version
104109
/ ".codex-plugin"
105110
/ "plugin.json"
106111
)

0 commit comments

Comments
 (0)