diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cada97..74cc9bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.2.1] - 2026-02-07 + ### Changed - **MultiPeriodDiD: Full event-study specification** (BREAKING) - 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 prevents `avg_t_stat=0` / `avg_p_value=1` when variance is infinite) - HonestDiD: extraction now uses explicit pre-then-post ordering instead of sorted period labels (prevents misclassification when period labels don't sort chronologically) +- Backend-aware test parameter scaling for pure Python CI performance +- Lower TROP stratified bootstrap threshold floor from 11 to 5 for pure Python CI ## [2.2.0] - 2026-01-27 @@ -654,6 +658,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `to_dict()` and `to_dataframe()` export methods - `is_significant` and `significance_stars` properties +[2.2.1]: https://github.com/igerber/diff-diff/compare/v2.2.0...v2.2.1 [2.2.0]: https://github.com/igerber/diff-diff/compare/v2.1.9...v2.2.0 [2.1.9]: https://github.com/igerber/diff-diff/compare/v2.1.8...v2.1.9 [2.1.8]: https://github.com/igerber/diff-diff/compare/v2.1.7...v2.1.8 diff --git a/diff_diff/__init__.py b/diff_diff/__init__.py index 9b83a83..b2f55b5 100644 --- a/diff_diff/__init__.py +++ b/diff_diff/__init__.py @@ -136,7 +136,7 @@ load_mpdta, ) -__version__ = "2.2.0" +__version__ = "2.2.1" __all__ = [ # Estimators "DifferenceInDifferences", diff --git a/pyproject.toml b/pyproject.toml index ee35f4c..25ab08f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "diff-diff" -version = "2.2.0" +version = "2.2.1" description = "A library for Difference-in-Differences causal inference analysis" readme = "README.md" license = "MIT" diff --git a/rust/Cargo.toml b/rust/Cargo.toml index d3530da..c19e6cc 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diff_diff_rust" -version = "2.2.0" +version = "2.2.1" edition = "2021" description = "Rust backend for diff-diff DiD library" license = "MIT"