Skip to content

Commit 573fe90

Browse files
committed
docs: updated changelog
1 parent 494223a commit 573fe90

File tree

1 file changed

+21
-5
lines changed

1 file changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
## [0.4.0](https://github.com/getyourguide/dataframe-expectations/compare/v0.3.0...v0.4.0) (2025-11-10)
44

55

6+
### ⚠ BREAKING CHANGES
7+
8+
* ‼️ BREAKING CHANGE: Major codebase restructuring with new module organization. However, most changes are made to the internal modules.
9+
10+
**What changed:**
11+
- All internal modules have been reorganized into a `core/` package
12+
- Expectation registry simplified from three-dictionary to two-dictionary structure with O(1) lookups
13+
- Main imports updated from `expectations_suite` to `suite`
14+
15+
**Migration guide:**
16+
Update your imports to use the new module structure:
17+
```python
18+
# Before
19+
from dataframe_expectations.expectations_suite import DataFrameExpectationsSuite
20+
21+
# After
22+
from dataframe_expectations.suite import DataFrameExpectationsSuite
23+
```
24+
625
### Features
726

827
* restructure codebase with core/ module and explicit imports ([42a233a](https://github.com/getyourguide/dataframe-expectations/commit/42a233ade81fc2af3ce0462ab24f189d969756bd))
@@ -14,16 +33,13 @@
1433

1534
* consolidate imports ([9a76467](https://github.com/getyourguide/dataframe-expectations/commit/9a76467cd63c9ba15bd4878e247aef2b631316df))
1635
* deleted duplicate dataclass and enums from registry ([82bec0c](https://github.com/getyourguide/dataframe-expectations/commit/82bec0ce13be1e2a1bc16fb77d0aaf91edb5692f))
17-
* deleted duplicate DataFrameExpectation codefrom expectations package ([d47eb8b](https://github.com/getyourguide/dataframe-expectations/commit/d47eb8be2eef84d820653f5ef07a35e44695c5a3))
36+
* deleted duplicate DataFrameExpectation code from expectations package ([d47eb8b](https://github.com/getyourguide/dataframe-expectations/commit/d47eb8be2eef84d820653f5ef07a35e44695c5a3))
1837
* import enums from types ([fa84764](https://github.com/getyourguide/dataframe-expectations/commit/fa847643a310a27e615290567d3e11fad4344977))
1938
* manually trigger CI for release-please PRs ([49419e6](https://github.com/getyourguide/dataframe-expectations/commit/49419e6531c9fec51a6f46f1dde20ab2e850c1db))
2039
* manually trigger CI for release-please PRs ([9585cf5](https://github.com/getyourguide/dataframe-expectations/commit/9585cf5d75b0e90b6f94cd14cae87922055a2212))
21-
* return corrent version when package is built ([82ff343](https://github.com/getyourguide/dataframe-expectations/commit/82ff3435c6b6ea904a1a58b71eb6a890d80991d6))
22-
40+
* return correct version when package is built ([82ff343](https://github.com/getyourguide/dataframe-expectations/commit/82ff3435c6b6ea904a1a58b71eb6a890d80991d6))
2341

24-
### Documentation
2542

26-
* remove unused imports ([276589d](https://github.com/getyourguide/dataframe-expectations/commit/276589da8c5fec5537427c2d9ea622a33f40642d))
2743

2844
## [0.3.0](https://github.com/getyourguide/dataframe-expectations/compare/v0.2.0...v0.3.0) (2025-11-09)
2945

0 commit comments

Comments
 (0)