From 2e427d5514d4152666b90c53da6cc2180d62b92d Mon Sep 17 00:00:00 2001 From: Steven Bird Date: Tue, 16 May 2017 20:05:06 +0930 Subject: [PATCH] updates for 3.2.3 --- ChangeLog | 26 ++++++++++++++++++++++++++ nltk/VERSION | 2 +- web/conf.py | 2 +- web/install.rst | 2 +- web/news.rst | 9 +++++++++ 5 files changed, 38 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9be0db678a..8c5c714f8e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,29 @@ +Version 3.2.3 2017-05-16 + +* new interface to Stanford CoreNLP Web API +* improved Lancaster stemmer with customizable rules from Whoosh +* improved Treebank tokenizer +* improved support for GLEU score +* adopt new Abstract base class style +* support custom tab files for extending WordNet +* make synset_from_pos_and_offset a public method +* make non-English WordNet lemma lookups case-insensitive +* speed up TnT tagger +* speed up FreqDist and ConditionalFreqDist +* support additional quotes in TreebankWordTokenizer +* clean up Tk's postscript output +* drop explicit support for corpora not distributed with NLTK to streamline testing +* allow iterator in perceptron tagger training +* allow for curly bracket quantifiers in chunk.regexp.CHUNK_TAG_PATTERN +* new corpus reader for MWA subset of PPDB +* improved testing framework + +Thanks to the following contributors to 3.2.3: +Mark Amery, Carl Bolz, Abdelhak Bougouffa, Matt Chaput, Michael Goodman, +Jaehoon Hwang, Naoya Kanai, Jackson Lee, Christian Meyer, Dmitrijs Milajevs, +Adam Nelson, Pierpaolo Pantone, Liling Tan, Vilhjalmur Thorsteinsson, +Arthur Tilley, jmhutch, Yorwba, eromoe and others + Version 3.2.2 2016-12-31 * added Kondrak's Aline algorithm * added ChrF and GLEU MT evaluation metrics diff --git a/nltk/VERSION b/nltk/VERSION index be94e6f53d..b347b11eac 100644 --- a/nltk/VERSION +++ b/nltk/VERSION @@ -1 +1 @@ -3.2.2 +3.2.3 diff --git a/web/conf.py b/web/conf.py index cdd7d84d43..47341883d2 100644 --- a/web/conf.py +++ b/web/conf.py @@ -53,7 +53,7 @@ # The short X.Y version. version = '3' # The full version, including alpha/beta/rc tags. -release = '3.2.2' +release = '3.2.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/web/install.rst b/web/install.rst index ccc7ee8ed4..911a15c3c8 100644 --- a/web/install.rst +++ b/web/install.rst @@ -1,7 +1,7 @@ Installing NLTK =============== -NLTK requires Python versions 2.7 or 3.4+ +NLTK requires Python versions 2.7, 3.4, or 3.5 Mac/Unix -------- diff --git a/web/news.rst b/web/news.rst index 6776545360..7b097a0098 100644 --- a/web/news.rst +++ b/web/news.rst @@ -1,6 +1,15 @@ NLTK News ========= +2017 +---- + +NLTK 3.2.3 released: May 2017 + Interface to Stanford CoreNLP Web API, improved Lancaster stemmer, + improved Treebank tokenizer, support custom tab files for extending WordNet, + speed up TnT tagger, speed up FreqDist and ConditionalFreqDist, + new corpus reader for MWA subset of PPDB; improvements to testing framework + 2016 ----