Skip to content

Commit a4e0f93

Browse files
authored
Merge pull request #107 from igerber/release/v2.1.6
Bump version to 2.1.6
2 parents 0e23f3e + e932305 commit a4e0f93

4 files changed

Lines changed: 17 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and 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

diff_diff/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
load_mpdta,
137137
)
138138

139-
__version__ = "2.1.5"
139+
__version__ = "2.1.6"
140140
__all__ = [
141141
# Estimators
142142
"DifferenceInDifferences",

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 = "2.1.5"
7+
version = "2.1.6"
88
description = "A library for Difference-in-Differences causal inference analysis"
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 = "2.1.5"
3+
version = "2.1.6"
44
edition = "2021"
55
description = "Rust backend for diff-diff DiD library"
66
license = "MIT"

0 commit comments

Comments
 (0)