Skip to content

Commit 0f02edf

Browse files
authored
Merge pull request #132 from igerber/release/v2.2.1
Bump version to 2.2.1
2 parents 4d128ee + 6c2f901 commit 0f02edf

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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

diff_diff/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
load_mpdta,
137137
)
138138

139-
__version__ = "2.2.0"
139+
__version__ = "2.2.1"
140140
__all__ = [
141141
# Estimators
142142
"DifferenceInDifferences",

pyproject.toml

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

55
[project]
66
name = "diff-diff"
7-
version = "2.2.0"
7+
version = "2.2.1"
88
description = "A library for Difference-in-Differences causal inference analysis"
99
readme = "README.md"
1010
license = "MIT"

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "diff_diff_rust"
3-
version = "2.2.0"
3+
version = "2.2.1"
44
edition = "2021"
55
description = "Rust backend for diff-diff DiD library"
66
license = "MIT"

0 commit comments

Comments
 (0)