diff --git a/qsl.toml b/qsl.toml index 03ba3ee..1666b85 100644 --- a/qsl.toml +++ b/qsl.toml @@ -2,7 +2,7 @@ tier = "strategy-lib" upgrade_ring = "ring_b" [compat] -bundle = "2026.07.3" +bundle = "2026.07.4" requires = [ "quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@651c9ac4f37ce6e7fe1bac84dc7646cd5abc9e6e", ] diff --git a/tests/test_qsl_compat_metadata.py b/tests/test_qsl_compat_metadata.py index 0cb7c0b..07f4a1c 100644 --- a/tests/test_qsl_compat_metadata.py +++ b/tests/test_qsl_compat_metadata.py @@ -8,4 +8,4 @@ def test_qsl_compat_metadata_exists_and_bundle() -> None: with qsl_path.open("rb") as f: data = tomllib.load(f) - assert data.get("compat", {}).get("bundle") == "2026.07.3", "compat.bundle mismatch" + assert data.get("compat", {}).get("bundle") == "2026.07.4", "compat.bundle mismatch"