- The
compare()
function now returnsResult<u8>
instead ofResult<i8>
as the return value is always between 0 and 100.
- The
hash()
,hash_from_file()
, andcompare()
functions now return aResult
instead ofOption
(#4). - The
compare()
function now accepts&str
instead of&[u8]
ashash()
returnsString
, not bytes. This simplifies and unifies the library interface.
- Updated the used version of the underlying libfuzzy
library to the current
master
(last update: 2019-02-21). - The
configure
script is now executed directly instead of viash
when buildinglibfuzzy
. - Improved the obtaining of the source directory when building
libfuzzy
(#3). - Added a workaround for forcing
make
not to rebuild any autotools-related files when buildinglibfuzzy
.
- Switched from the deprecated gcc crate to the cc crate.
- Updated the used version of the libc crate to 0.2 (i.e. dropped the patch version requirement).
- Updated the used version of the underlying libfuzzy library to 2.14.1.
- Updated the used version of the libc crate to 0.2.40.
- Updated the used version of the gcc crate to 0.3.58.
Initial release.