Releases: dgrtwo/fuzzyjoin
Releases · dgrtwo/fuzzyjoin
Version 0.1.6: dplyr 1.0.0 compatibility
Version 0.1.5: tidyr v1.0.0 compatibility, and various bug and typo fixes
The most important component of this release is that it is compatible with tidyr v1.0.0, which is planned to be submitted to CRAN on 2019-09-09. It also fixes a few minor bugs and issues.
Features
- fuzzy_join now supports formula notation for
match_fun
,multi_match_fun
, andindex_match_fun
.
Bug fixes and maintenance
- Many changes to internals to make compatible with newest versions of dplyr and tidyr (#58 and #60, @jennybc)
- difference, distance, geo and stringdist joins now add a distance column even if there are no overlapping rows (fixes #57)
- distance joins now support the case where there's only one column in common (fixes #43)
- Fixed typos in documentation (#40, @ChrisMuir and #53, @brooke-watson)
Version 0.1.1: Adding a distance column, various package management features
Features
- Added option not only to join based on a maximum distance but also to append a distance column, using the
distance_col
argument. This is available indifference_join
,distance_join
,stringdist_join
, andgeo_join
(#10)
Bug fixes
- Fixed to ignore groups while preserving the groups of x in the output (#11)
- Fixed to append
.x
and.y
to all common columns, not just those inby
(#12)
Package management
- Added codecov to measure test coverage
- Added AppVeyor continuous integration
- Added Code of Conduct
Version 0.1
- Initial version of package on CRAN