Skip to content

Commit bf4389a

Browse files
authored
Merge pull request #191 from igerber/release/v2.6.1
Bump version to 2.6.1
2 parents e7d898a + 3205e9d commit bf4389a

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@ 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.6.1] - 2026-03-08
9+
10+
### Added
11+
- Short aliases for all estimators (e.g., `DID`, `TWFE`, `MPID`, `CSAN`, `SDID`)
12+
13+
### Changed
14+
- Update roadmap for v2.6.0: reflect completed work and refresh priorities
15+
- Add ContinuousDiD to ReadTheDocs API reference and choosing guide
16+
- Add SPT identification caveat and data requirements per review
17+
- Add time-invariant dose requirement to data requirements
18+
19+
### Fixed
20+
- Fix alias docs wording: clarify TROP has no alias
21+
- Fix ContinuousDiD SE method: influence function, not delta method
22+
- Fix methodology doc: influence functions, not delta method for ContinuousDiD SEs
23+
- Fix dollar sign escaping in continuous DiD tutorial
24+
- Fix continuous DiD tutorial formatting: escape dollar signs and split chart cell
25+
- Fix methodology claims and slide numbering per PR review
26+
827
## [2.6.0] - 2026-02-22
928

1029
### Added
@@ -833,6 +852,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
833852
- `to_dict()` and `to_dataframe()` export methods
834853
- `is_significant` and `significance_stars` properties
835854

855+
[2.6.1]: https://github.com/igerber/diff-diff/compare/v2.6.0...v2.6.1
836856
[2.6.0]: https://github.com/igerber/diff-diff/compare/v2.5.0...v2.6.0
837857
[2.5.0]: https://github.com/igerber/diff-diff/compare/v2.4.3...v2.5.0
838858
[2.4.3]: https://github.com/igerber/diff-diff/compare/v2.4.2...v2.4.3

diff_diff/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173
Stacked = StackedDiD
174174
Bacon = BaconDecomposition
175175

176-
__version__ = "2.6.0"
176+
__version__ = "2.6.1"
177177
__all__ = [
178178
# Estimators
179179
"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.6.0"
7+
version = "2.6.1"
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.6.0"
3+
version = "2.6.1"
44
edition = "2021"
55
description = "Rust backend for diff-diff DiD library"
66
license = "MIT"

0 commit comments

Comments
 (0)