Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "hlink"
version = "4.1.0"
version = "4.2.0"
description = "Fast supervised pyspark record linkage software"
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -55,7 +55,7 @@ hlink = "hlink.scripts.main:cli"
Homepage = "https://github.com/ipums/hlink"
Documentation = "https://hlink.docs.ipums.org"
Repository = "https://github.com/ipums/hlink"
Changelog = "https://github.com/ipums/hlink/releases"
Changelog = "https://hlink.docs.ipums.org/changelog.html"

[tool.setuptools.packages.find]
where = ["."]
Expand Down
11 changes: 10 additions & 1 deletion sphinx-docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The format of this changelog is based on [Keep A Changelog][keep-a-changelog].
Hlink adheres to semantic versioning as much as possible.

## Not Yet Released
## v4.2.0 (2025-04-29)

### Added

Expand All @@ -26,13 +26,21 @@ Hlink adheres to semantic versioning as much as possible.
* Stabilized the XGBoost feature, since the integration provided by the xgboost
Python package is no longer unstable. [PR #219][pr219]

* Improved the error messages generated when a column mapping transform is
missing a required key. [PR #207][pr207]

### Deprecated

* The `hlink.linking.core.transforms.apply_transform` function, which applies
column mapping transforms, is now deprecated. Please use
`hlink.linking.core.column_mapping.apply_transform` instead.
`column_mapping.apply_transform` supports the same interface. [PR #207][pr207]

### Fixed

* Fixed a bug where command-line hlink would sometimes crash if the command
history file was missing. [PR #215][pr215]

## v4.1.0 (2025-04-15)

### Added
Expand Down Expand Up @@ -427,6 +435,7 @@ and false negative data in model exploration. [PR #1][pr1]
[pr207]: https://github.com/ipums/hlink/pull/207
[pr212]: https://github.com/ipums/hlink/pull/212
[pr213]: https://github.com/ipums/hlink/pull/213
[pr215]: https://github.com/ipums/hlink/pull/215
[pr219]: https://github.com/ipums/hlink/pull/219

[household-matching-docs]: config.html#household-matching
Expand Down