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
5 changes: 4 additions & 1 deletion 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.5.1"
date-released: "2026-06-02"
version: "3.5.2"
date-released: "2026-06-08"
doi: "10.5281/zenodo.19646175"
url: "https://github.com/igerber/diff-diff"
repository-code: "https://github.com/igerber/diff-diff"
Expand Down
2 changes: 1 addition & 1 deletion diff_diff/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@
DCDH = ChaisemartinDHaultfoeuille
HAD = HeterogeneousAdoptionDiD

__version__ = "3.5.1"
__version__ = "3.5.2"
__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.5.1
- Version: 3.5.2
- Repository: https://github.com/igerber/diff-diff
- License: MIT
- Dependencies: numpy, pandas, scipy (no statsmodels dependency)
Expand Down
4 changes: 1 addition & 3 deletions diff_diff/results.py
Original file line number Diff line number Diff line change
Expand Up @@ -1209,13 +1209,11 @@ def coef_var(self) -> float:
def placebo_effects(self) -> Optional[np.ndarray]:
"""Deprecated alias for :attr:`variance_effects` (removed in v4.0.0).

.. deprecated:: 3.6.0
.. deprecated:: 3.5.2
Renamed to ``variance_effects`` because the array's contents are
method-specific (placebo effects, bootstrap ATT draws, or
leave-one-out estimates depending on ``variance_method``).
"""
# `3.6.0` is the assumed next-minor (current is 3.5.1); confirm/resolve
# at bump-version time. The v4.0.0 removal target is fixed.
warnings.warn(
"SyntheticDiDResults.placebo_effects is deprecated; use "
"variance_effects instead. The array holds placebo effects, "
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "diff-diff"
version = "3.5.1"
version = "3.5.2"
description = "Difference-in-Differences causal inference with sklearn-like API. Callaway-Sant'Anna, Synthetic DiD, Honest DiD, event studies, parallel trends."
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diff_diff_rust"
version = "3.5.1"
version = "3.5.2"
edition = "2021"
rust-version = "1.85"
description = "Rust backend for diff-diff DiD library"
Expand Down
Loading