Skip to content

Commit 30c2cb9

Browse files
authored
Merge pull request #536 from igerber/release/3.5.2
Release v3.5.2: version bump + CHANGELOG reconciliation
2 parents ea5d405 + 8652bb9 commit 30c2cb9

7 files changed

Lines changed: 11 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Large diffs are not rendered by default.

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ authors:
77
family-names: Gerber
88
orcid: "https://orcid.org/0009-0009-3275-5591"
99
license: MIT
10-
version: "3.5.1"
11-
date-released: "2026-06-02"
10+
version: "3.5.2"
11+
date-released: "2026-06-08"
1212
doi: "10.5281/zenodo.19646175"
1313
url: "https://github.com/igerber/diff-diff"
1414
repository-code: "https://github.com/igerber/diff-diff"

diff_diff/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@
298298
DCDH = ChaisemartinDHaultfoeuille
299299
HAD = HeterogeneousAdoptionDiD
300300

301-
__version__ = "3.5.1"
301+
__version__ = "3.5.2"
302302
__all__ = [
303303
# Estimators
304304
"DifferenceInDifferences",

diff_diff/guides/llms-full.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
- Version: 3.5.1
5+
- Version: 3.5.2
66
- Repository: https://github.com/igerber/diff-diff
77
- License: MIT
88
- Dependencies: numpy, pandas, scipy (no statsmodels dependency)

diff_diff/results.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1209,13 +1209,11 @@ def coef_var(self) -> float:
12091209
def placebo_effects(self) -> Optional[np.ndarray]:
12101210
"""Deprecated alias for :attr:`variance_effects` (removed in v4.0.0).
12111211
1212-
.. deprecated:: 3.6.0
1212+
.. deprecated:: 3.5.2
12131213
Renamed to ``variance_effects`` because the array's contents are
12141214
method-specific (placebo effects, bootstrap ATT draws, or
12151215
leave-one-out estimates depending on ``variance_method``).
12161216
"""
1217-
# `3.6.0` is the assumed next-minor (current is 3.5.1); confirm/resolve
1218-
# at bump-version time. The v4.0.0 removal target is fixed.
12191217
warnings.warn(
12201218
"SyntheticDiDResults.placebo_effects is deprecated; use "
12211219
"variance_effects instead. The array holds placebo effects, "

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 = "3.5.1"
7+
version = "3.5.2"
88
description = "Difference-in-Differences causal inference with sklearn-like API. Callaway-Sant'Anna, Synthetic DiD, Honest DiD, event studies, parallel trends."
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 = "3.5.1"
3+
version = "3.5.2"
44
edition = "2021"
55
rust-version = "1.85"
66
description = "Rust backend for diff-diff DiD library"

0 commit comments

Comments
 (0)