Skip to content

Commit

Permalink
4.0.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinL committed Dec 5, 2024
1 parent 0747842 commit cbdc129
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [4.0.6] - 2024-12-05

### Added
- Added new `PairwiseStringDistanceFunctionLevel` and `PairwiseStringDistanceFunctionAtThresholds`
for comparing array columns using a string similarity on each pair of values
([#2517](https://github.com/moj-analytical-services/splink/pull/2517))
for comparing array columns using a string similarity on each pair of values ([#2517](https://github.com/moj-analytical-services/splink/pull/2517))
- Compare two records now allows typed inputs, not just dict ([#2498](https://github.com/moj-analytical-services/splink/pull/2498))
- Clustering allows match weight args not just match probability ([#2454]https://github.com/moj-analytical-services/splink/pull/2454))

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "splink"
version = "4.0.5"
version = "4.0.6"
description = "Fast probabilistic data linkage at scale"
authors = ["Robin Linacre <[email protected]>", "Sam Lindsay", "Theodore Manassis", "Tom Hepworth", "Andy Bond", "Ross Kennedy"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion splink/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __getattr__(name):
raise AttributeError(f"module 'splink' has no attribute '{name}'") from None


__version__ = "4.0.5"
__version__ = "4.0.6"


__all__ = [
Expand Down

0 comments on commit cbdc129

Please sign in to comment.