jellyfish/docs/changelog.rst

128 lines
2.8 KiB
ReStructuredText
Raw Normal View History

2015-04-22 19:53:14 +00:00
Changelog
=========
2020-05-21 15:39:25 +00:00
0.8.0 -
----------
* rename jaro_winkler to jaro_winkler_distance to match other functions
backwards compatible shim added, but will be removed in 1.0
2020-05-21 14:49:35 +00:00
* fix Python jaro_winkler bug #124
2020-05-21 17:55:30 +00:00
* fix soundex bug with W/H cases, #83
* fix metaphone bug with WH prefix, #108
* fix metaphone bug with leading vowels and 'kn' pair, #123
2020-05-21 14:49:35 +00:00
* fix Python 3.9 deprecation warning
2019-06-05 15:06:19 +00:00
0.7.2 - 5 June 2019
2019-06-04 23:46:14 +00:00
-----------------------
* fix CJellyfish damerau_levenshtein w/ unicode, thanks to immerrr
2019-06-05 00:02:01 +00:00
* fix final H in NYSIIS
2019-06-05 15:06:19 +00:00
* fix issue w/ trailing W in metaphone
2019-06-04 23:46:14 +00:00
2019-01-11 04:35:46 +00:00
0.7.1 - 10 January 2019
-----------------------
* restrict install to Python >= 3.4
2019-01-10 18:47:14 +00:00
0.7.0 - 10 January 2019
-----------------------
2018-04-16 17:17:44 +00:00
* drop Python 2 compatibility & legacy code
2019-01-10 18:47:14 +00:00
* add bugfix for NYSIIS for words starting with PF
2018-04-16 17:17:44 +00:00
2018-04-16 13:59:23 +00:00
0.6.1 - April 16 2018
---------------------
* fixed wheel release issue
2018-04-07 13:52:06 +00:00
0.6.0 - April 7 2018
--------------------
* fix quite a few bugs & differences between C/Py implementations
* add wagner-fischer testdata
* uppercase soundex result
* better error handling in nysiis, soundex, and jaro
2016-06-23 17:22:26 +00:00
0.5.6 - June 23 2016
--------------------
* bugfix for metaphone & soundex raising unexpected TypeErrors on Windows (#54)
2016-06-21 18:13:50 +00:00
0.5.5 - June 21 2016
--------------------
* bugfix for metaphone WH case
2016-05-13 23:27:03 +00:00
0.5.4 - May 13 2016
-------------------
* bugfix for C version of damerau_levenshtein thanks to Tyler Sellon
2016-03-15 02:41:35 +00:00
0.5.3 - March 15 2016
---------------------
* style/packaging changes
2016-02-03 13:48:08 +00:00
0.5.2 - February 3 2016
-----------------------
* testing fixes for Python 3.5
* bugfix for Metaphone w/ silent H thanks to Jeremy Carbaugh
2015-07-13 00:18:32 +00:00
0.5.1 - July 12 2015
--------------------
2015-05-01 21:45:41 +00:00
* bugfixes for NYSIIS
* bugfixes for metaphone
2015-07-13 00:18:32 +00:00
* bugfix for C version of jaro_winkler
2015-05-01 21:45:41 +00:00
2015-04-23 15:13:10 +00:00
0.5.0 - April 23 2015
---------------------
2015-04-22 19:53:14 +00:00
* consistent unicode behavior, all functions take unicode and reject bytes on Py2 and 3, C and Python
* parametrize tests
2015-04-23 15:13:10 +00:00
* Windows compiler support
2015-04-22 19:53:14 +00:00
0.4.0 - March 27 2015
---------------------
* tons of new tests
* documentation
* split out cjellyfish
* test all w/ unicode and plenty of fixes to accommodate
2015-04-22 19:53:14 +00:00
* 100% test coverage
0.3.4 - February 4 2015
-----------------------
* fix segfaults and memory leaks via Danrich Parrol
0.3.3 - November 20 2014
------------------------
* fix bugs in damerau and NYSIIS
0.3.2 - August 11 2014
-----------------------
* fix for jaro-winkler from David McKean
* more packaging fixes
0.3.1 - July 16 2014
--------------------
* packaging fix for C/Python alternative
0.3.0 - July 15 2014
--------------------
* python alternatives where C isn't available
0.2.2 - March 14 2014
---------------------
* testing fixes
* assorted bugfixes in NYSIIS
0.2.0 - January 26 2012
-----------------------
* incorporate some speed changes from Peter Scott
* segfault bugfixes.
0.1.2 - September 16 2010
-------------------------
* initial working release