Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
236 changes: 236 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ authors:
family-names: Gerber
orcid: "https://orcid.org/0009-0009-3275-5591"
license: MIT
version: "3.11.1"
date-released: "2026-08-30"
version: "3.12.0"
date-released: "2026-09-08"
doi: "10.5281/zenodo.19646175"
url: "https://github.com/igerber/diff-diff"
repository-code: "https://github.com/igerber/diff-diff"
Expand Down
20 changes: 0 additions & 20 deletions changelog.d/20260830-alpha-mislabel-guard.md

This file was deleted.

19 changes: 0 additions & 19 deletions changelog.d/20260903-fractional-confidence-label.md

This file was deleted.

44 changes: 0 additions & 44 deletions changelog.d/20260904-sdid-shape-only-fit-rmse.md

This file was deleted.

56 changes: 0 additions & 56 deletions changelog.d/20260905-bad-controls-dml.md

This file was deleted.

19 changes: 0 additions & 19 deletions changelog.d/20260905-bad-controls-paper-review.md

This file was deleted.

6 changes: 0 additions & 6 deletions changelog.d/20260905-deaner-ku-paper-review.md

This file was deleted.

20 changes: 0 additions & 20 deletions changelog.d/20260905-hc2-leverage-one.md

This file was deleted.

7 changes: 0 additions & 7 deletions changelog.d/20260905-wooldridge-unsupported-period-action.md

This file was deleted.

35 changes: 0 additions & 35 deletions changelog.d/20260906-duration-did.md

This file was deleted.

19 changes: 0 additions & 19 deletions changelog.d/20260907-bad-controls-tutorial.md

This file was deleted.

2 changes: 1 addition & 1 deletion diff_diff/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ def __getattr__(name: str) -> _Any:
raise AttributeError(f"module 'diff_diff' has no attribute {name!r}")


__version__ = "3.11.1"
__version__ = "3.12.0"
__all__ = [
# Estimators
"DifferenceInDifferences",
Expand Down
2 changes: 1 addition & 1 deletion diff_diff/guides/llms-full.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> A Python library for Difference-in-Differences causal inference analysis. Provides sklearn-like estimators with statsmodels-style output for econometric analysis.

- Version: 3.11.1
- Version: 3.12.0
- Repository: https://github.com/igerber/diff-diff
- License: MIT
- Dependencies: numpy, pandas, scipy (no statsmodels dependency)
Expand Down
2 changes: 1 addition & 1 deletion diff_diff/results.py
Original file line number Diff line number Diff line change
Expand Up @@ -1284,7 +1284,7 @@ def __setstate__(self, state: Dict[str, Any]) -> None:
if "placebo_effects" in state and "variance_effects" not in state:
state = dict(state)
state["variance_effects"] = state.pop("placebo_effects")
# Pre-v3.11.2 pickles: ``pre_treatment_fit`` was the LEVEL-inclusive
# Pre-v3.12.0 pickles: ``pre_treatment_fit`` was the LEVEL-inclusive
# RMSE and the shape-only / placebo-reference fields did not exist.
# Never relabel the stale value as shape-only: recompute both
# statistics from the stored trajectories when they are present
Expand Down
Loading
Loading