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,19 @@ 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.1.6] - 2026-01-24
9+
10+ ### Added
11+ - ** Methodology verification tests** for DifferenceInDifferences estimator
12+ - Comprehensive test suite validating all REGISTRY.md requirements
13+ - Tests for formula interface, coefficient extraction, rank deficiency handling
14+ - Singleton cluster variance estimation behavioral tests
15+
16+ ### Changed
17+ - ** REGISTRY.md documentation improvements**
18+ - Clarified singleton cluster formula notation (u_i² X_i X_i' instead of ambiguous residual² × X'X)
19+ - Verified DifferenceInDifferences behavior against documented requirements
20+
821## [ 2.1.5] - 2026-01-22
922
1023### Added
@@ -517,6 +530,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
517530 - ` to_dict() ` and ` to_dataframe() ` export methods
518531 - ` is_significant ` and ` significance_stars ` properties
519532
533+ [ 2.1.6 ] : https://github.com/igerber/diff-diff/compare/v2.1.5...v2.1.6
520534[ 2.1.5 ] : https://github.com/igerber/diff-diff/compare/v2.1.4...v2.1.5
521535[ 2.1.4 ] : https://github.com/igerber/diff-diff/compare/v2.1.3...v2.1.4
522536[ 2.1.3 ] : https://github.com/igerber/diff-diff/compare/v2.1.2...v2.1.3
Original file line number Diff line number Diff line change 136136 load_mpdta ,
137137)
138138
139- __version__ = "2.1.5 "
139+ __version__ = "2.1.6 "
140140__all__ = [
141141 # Estimators
142142 "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.1.5 "
7+ version = " 2.1.6 "
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.1.5 "
3+ version = " 2.1.6 "
44edition = " 2021"
55description = " Rust backend for diff-diff DiD library"
66license = " MIT"
You can’t perform that action at this time.
0 commit comments