Skip to content

Commit 2116ff5

Browse files
authored
Merge pull request #215 from igerber/release/v2.7.3
Bump version to 2.7.3
2 parents 41a34c8 + b302102 commit 2116ff5

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.7.3] - 2026-03-19
11+
12+
### Added
13+
- Add aarch64 Linux wheel builds to publish workflow
14+
15+
### Changed
16+
- Improve documentation information architecture
17+
- Fix silent interpreter skip and consolidate Linux jobs in publish workflow
18+
1019
## [2.7.2] - 2026-03-18
1120

1221
### Added
@@ -914,6 +923,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
914923
- `to_dict()` and `to_dataframe()` export methods
915924
- `is_significant` and `significance_stars` properties
916925

926+
[2.7.3]: https://github.com/igerber/diff-diff/compare/v2.7.2...v2.7.3
917927
[2.7.2]: https://github.com/igerber/diff-diff/compare/v2.7.1...v2.7.2
918928
[2.7.1]: https://github.com/igerber/diff-diff/compare/v2.7.0...v2.7.1
919929
[2.7.0]: https://github.com/igerber/diff-diff/compare/v2.6.1...v2.7.0

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.2"
182+
__version__ = "2.7.3"
183183
__all__ = [
184184
# Estimators
185185
"DifferenceInDifferences",

docs/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: 2.7.2
5+
- Version: 2.7.3
66
- Repository: https://github.com/igerber/diff-diff
77
- License: MIT
88
- Dependencies: numpy, pandas, scipy (no statsmodels dependency)

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.2"
7+
version = "2.7.3"
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.2"
3+
version = "2.7.3"
44
edition = "2021"
55
description = "Rust backend for diff-diff DiD library"
66
license = "MIT"

0 commit comments

Comments
 (0)