Skip to content

Commit 7be76df

Browse files
authored
Merge pull request #211 from igerber/release/v2.7.2
Release v2.7.2
2 parents a073428 + e3dbcfa commit 7be76df

4 files changed

Lines changed: 13 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.7.2] - 2026-03-18
11+
12+
### Added
13+
- SEO infrastructure: meta tags, sitemap, llms.txt/llms-full.txt for AI discoverability
14+
1015
### Changed
1116
- Rename TROP `method="twostep"` to `method="local"`; `"twostep"` deprecated, removal in v3.0
1217
- Rename internal TROP `_joint_*` methods to `_global_*` for consistency
1318

19+
### Fixed
20+
- Fix TROPResults schema: report unit counts not observation counts
21+
- Fix llms-full.txt accuracy and dynamic canonical URLs
22+
1423
## [2.7.1] - 2026-03-15
1524

1625
### Changed
@@ -905,6 +914,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
905914
- `to_dict()` and `to_dataframe()` export methods
906915
- `is_significant` and `significance_stars` properties
907916

917+
[2.7.2]: https://github.com/igerber/diff-diff/compare/v2.7.1...v2.7.2
908918
[2.7.1]: https://github.com/igerber/diff-diff/compare/v2.7.0...v2.7.1
909919
[2.7.0]: https://github.com/igerber/diff-diff/compare/v2.6.1...v2.7.0
910920
[2.6.1]: https://github.com/igerber/diff-diff/compare/v2.6.0...v2.6.1

diff_diff/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@
179179
Bacon = BaconDecomposition
180180
EDiD = EfficientDiD
181181

182-
__version__ = "2.7.1"
182+
__version__ = "2.7.2"
183183
__all__ = [
184184
# Estimators
185185
"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.7.1"
7+
version = "2.7.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 = "2.7.1"
3+
version = "2.7.2"
44
edition = "2021"
55
description = "Rust backend for diff-diff DiD library"
66
license = "MIT"

0 commit comments

Comments
 (0)