File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 2.2.1] - 2026-02-07
11+
1012### Changed
1113- ** MultiPeriodDiD: Full event-study specification** (BREAKING)
1214 - Treatment × period interactions now created for ALL periods (pre and post),
@@ -51,6 +53,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5153 prevents ` avg_t_stat=0 ` / ` avg_p_value=1 ` when variance is infinite)
5254- HonestDiD: extraction now uses explicit pre-then-post ordering instead of sorted period
5355 labels (prevents misclassification when period labels don't sort chronologically)
56+ - Backend-aware test parameter scaling for pure Python CI performance
57+ - Lower TROP stratified bootstrap threshold floor from 11 to 5 for pure Python CI
5458
5559## [ 2.2.0] - 2026-01-27
5660
@@ -654,6 +658,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
654658 - ` to_dict() ` and ` to_dataframe() ` export methods
655659 - ` is_significant ` and ` significance_stars ` properties
656660
661+ [ 2.2.1 ] : https://github.com/igerber/diff-diff/compare/v2.2.0...v2.2.1
657662[ 2.2.0 ] : https://github.com/igerber/diff-diff/compare/v2.1.9...v2.2.0
658663[ 2.1.9 ] : https://github.com/igerber/diff-diff/compare/v2.1.8...v2.1.9
659664[ 2.1.8 ] : https://github.com/igerber/diff-diff/compare/v2.1.7...v2.1.8
Original file line number Diff line number Diff line change 136136 load_mpdta ,
137137)
138138
139- __version__ = "2.2.0 "
139+ __version__ = "2.2.1 "
140140__all__ = [
141141 # Estimators
142142 "DifferenceInDifferences" ,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "maturin"
44
55[project ]
66name = " diff-diff"
7- version = " 2.2.0 "
7+ version = " 2.2.1 "
88description = " A library for Difference-in-Differences causal inference analysis"
99readme = " README.md"
1010license = " MIT"
Original file line number Diff line number Diff line change 11[package ]
22name = " diff_diff_rust"
3- version = " 2.2.0 "
3+ version = " 2.2.1 "
44edition = " 2021"
55description = " Rust backend for diff-diff DiD library"
66license = " MIT"
You can’t perform that action at this time.
0 commit comments