update version and changelog

This commit is contained in:
Robyn Speer 2020-04-28 15:24:24 -04:00
parent 13ce4606b2
commit 0ff812a711
2 changed files with 11 additions and 2 deletions

View File

@ -1,7 +1,16 @@
## Version 2.3.2 (2020-04-28)
- Relaxing the dependency on regex had an unintended consequence in 2.3.1:
it could no longer get the frequency of French phrases such as "l'écran"
because their tokenization behavior changed.
2.3.2 fixes this with a more complex tokenization rule that should handle
apostrophes the same across these various versions of regex.
## Version 2.3.1 (2020-04-22)
- State the dependency on msgpack >= 1.0 in setup.py.
- Relax the dependency on regex to allow versions after 2018.02.08.
## Version 2.3 (2020-04-16)

View File

@ -35,7 +35,7 @@ if sys.version_info < (3, 4):
setup(
name="wordfreq",
version='2.3.1',
version='2.3.2',
maintainer='Robyn Speer',
maintainer_email='rspeer@luminoso.com',
url='http://github.com/LuminosoInsight/wordfreq/',