Skip to content

Commit 4f53e7c

Browse files
committed
chore(release): 0.7.0
Bundles the concordance influence-function CIs (concordance_index_ci / concordance_index_delta_ci) and the TreeSHAP parallel-over-samples rewrite (incl. the breaking keyword-only shap_values signature). Version bumped across pyproject / __init__ / test_smoke / CITATION; CHANGELOG [Unreleased] -> [0.7.0]. Claude-Session: https://claude.ai/code/session_013ucnp9GM5BY9cznVCWERLn
1 parent d737781 commit 4f53e7c

5 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313
1414
## [Unreleased]
1515

16+
## [0.7.0] — 2026-06-22
17+
1618
### Added
1719

1820
- **Influence-function confidence intervals for the Uno/Wolbers IPCW

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ abstract: >-
2121
sandwich SEs) and a much faster forest TreeSHAP. Renamed from `crforest`
2222
in 0.3.1.
2323
type: software
24-
version: 0.6.0
25-
date-released: 2026-06-04
24+
version: 0.7.0
25+
date-released: 2026-06-22
2626
doi: 10.5281/zenodo.19876282
2727
identifiers:
2828
- type: doi

pyproject.toml

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

55
[project]
66
name = "comprisk"
7-
version = "0.6.0"
7+
version = "0.7.0"
88
description = "Python toolkit for competing risks: forest (RSF) + (penalized) Fine-Gray subdistribution regression + Aalen-Johansen cumulative incidence + Gray's K-sample test + cause-specific Cox. Scales to n=10⁶ in ~1 min, 10–22× faster than randomForestSRC on real EHR data, scikit-learn-compatible."
99
readme = "README.md"
1010
license = "Apache-2.0"

src/comprisk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
)
2121
from comprisk.penalized_fine_gray import PenalizedFineGrayRegression
2222

23-
__version__ = "0.6.0"
23+
__version__ = "0.7.0"
2424

2525
__all__ = [
2626
"CauseSpecificCox",

tests/test_smoke.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ def test_package_imports():
99

1010
def test_version_matches_expected():
1111
# Pinned to the current release version. Bump when releasing.
12-
assert comprisk.__version__ == "0.6.0"
12+
assert comprisk.__version__ == "0.7.0"

0 commit comments

Comments
 (0)