File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 2.3.2] - 2026-02-16
9+
10+ ### Added
11+ - ** Python 3.13 support** with upper version cap (` >=3.9,<3.14 ` )
12+
13+ ### Changed
14+ - ** Sun-Abraham methodology review** (PR #153 )
15+ - IW aggregation weights now use event-time observation counts (not group sizes)
16+ - Normalize ` np.inf ` never-treated encoding before treatment group detection
17+ - Add R benchmark scripts and methodology-aligned tests
18+ - Use ` rank_deficient_action ` and ` np.errstate ` instead of broad ` RuntimeWarning ` filter in SDID tutorial
19+
20+ ### Fixed
21+ - Sun-Abraham bootstrap NaN propagation for non-finite ATT estimates
22+ - Sun-Abraham df_adjustment off-by-one in analytical SE computation
23+ - CI pandas compatibility for SunAbraham bootstrap inference
24+ - SyntheticDiD tutorial: eliminate pre-treatment fit warnings
25+
826## [ 2.3.1] - 2026-02-15
927
1028### Fixed
@@ -701,6 +719,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
701719 - ` to_dict() ` and ` to_dataframe() ` export methods
702720 - ` is_significant ` and ` significance_stars ` properties
703721
722+ [ 2.3.2 ] : https://github.com/igerber/diff-diff/compare/v2.3.1...v2.3.2
704723[ 2.3.1 ] : https://github.com/igerber/diff-diff/compare/v2.3.0...v2.3.1
705724[ 2.3.0 ] : https://github.com/igerber/diff-diff/compare/v2.2.1...v2.3.0
706725[ 2.2.1 ] : https://github.com/igerber/diff-diff/compare/v2.2.0...v2.2.1
Original file line number Diff line number Diff line change 142142 load_mpdta ,
143143)
144144
145- __version__ = "2.3.1 "
145+ __version__ = "2.3.2 "
146146__all__ = [
147147 # Estimators
148148 "DifferenceInDifferences" ,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "maturin"
44
55[project ]
66name = " diff-diff"
7- version = " 2.3.1 "
7+ version = " 2.3.2 "
88description = " A library for Difference-in-Differences causal inference analysis"
99readme = " README.md"
1010license = " MIT"
Original file line number Diff line number Diff line change 11[package ]
22name = " diff_diff_rust"
3- version = " 2.3.1 "
3+ version = " 2.3.2 "
44edition = " 2021"
55description = " Rust backend for diff-diff DiD library"
66license = " MIT"
You can’t perform that action at this time.
0 commit comments