Skip to content

Commit 5b0a91c

Browse files
release: bump version to 1.1.0
Everything merged to main since 1.0.0 is additive/backward-compatible (new fd.* APIs, interactive render layer, cleaning memory, contract/CDC/ provenance gates, benchmarks, bugfixes) per the CHANGELOG Unreleased section, so per the project's stated semver policy this is a MINOR bump. Updates the two required sources of truth (pyproject.toml, __init__.py) and moves the changelog Unreleased notes under a dated 1.1.0 heading.
1 parent e515f90 commit 5b0a91c

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ adheres to [Semantic Versioning](https://semver.org/).
66

77
## [Unreleased]
88

9+
## [1.1.0] - 2026-07-06
10+
911
### Added
1012
- **Interactive output layer** (`freshdata.render`, lazy-imported): `to_html()` /
1113
`_repr_html_()` / `.show()` on `CleanReport` (collapsible action timeline +

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "hatchling.build"
77
# distribution MUST remain `freshdata-cleaner`: PyPI rejects `freshdata` as
88
# too similar to the existing `fresh-data` project (see commit 88aa495).
99
name = "freshdata-cleaner"
10-
version = "1.0.0"
10+
version = "1.1.0"
1111
description = "Fast, safe, automatic data cleaning for real-world tabular data."
1212
readme = "README.md"
1313
requires-python = ">=3.9"

src/freshdata/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
)
8989
from .textlint import TextIssue, TextLintReport, lint_text_encoding
9090

91-
__version__ = "1.0.0"
91+
__version__ = "1.1.0"
9292

9393
__all__ = [
9494
"Action",

0 commit comments

Comments
 (0)