Skip to content

Commit 9518839

Browse files
committed
Add value-target plan payload helpers
1 parent 57fc732 commit 9518839

5 files changed

Lines changed: 639 additions & 2 deletions

File tree

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 = "quant-platform-kit"
7-
version = "0.7.5"
7+
version = "0.7.6"
88
description = "Shared broker adapters, domain models, execution ports, and notification utilities for QuantStrategyLab strategies."
99
readme = "README.md"
1010
requires-python = ">=3.9"

src/quant_platform_kit/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""QuantPlatformKit public package surface."""
22

3-
__version__ = "0.7.5"
3+
__version__ = "0.7.6"
44

55
from .common.models import (
66
ExecutionReport,
@@ -24,6 +24,7 @@
2424
validate_strategy_decision,
2525
validate_strategy_manifest,
2626
validate_strategy_runtime_adapter,
27+
build_value_target_plan_payload,
2728
)
2829
from .common.strategies import (
2930
CRYPTO_DOMAIN,
@@ -73,6 +74,7 @@
7374
"StrategyMetadata",
7475
"StrategyRuntimeAdapter",
7576
"US_EQUITY_DOMAIN",
77+
"build_value_target_plan_payload",
7678
"build_platform_profile_matrix",
7779
"build_profile_aliases",
7880
"build_strategy_catalog",

0 commit comments

Comments
 (0)