1+
2+ Version 3.8 2022-12-12
3+
4+ * Refactor dispersion plot (#3082)
5+ * Provide type hints for LazyCorpusLoader variables (#3081)
6+ * Throw warning when LanguageModel is initialized with incorrect vocabulary (#3080)
7+ * Fix WordNet's all_synsets() function (#3078)
8+ * Resolve TreebankWordDetokenizer inconsistency with end-of-string contractions (#3070)
9+ * Support both iso639-3 codes and BCP-47 language tags (#3060)
10+ * Avoid DeprecationWarning in Regexp tokenizer (#3055)
11+ * Fix many doctests, add doctests to CI (#3054, #3050, #3048)
12+ * Fix bool field not being read in VerbNet (#3044)
13+ * Greatly improve time efficiency of SyllableTokenizer when tokenizing numbers (#3042)
14+ * Fix encodings of Polish udhr corpus reader (#3038)
15+ * Allow TweetTokenizer to tokenize emoji flag sequences (#3034)
16+ * Prevent LazyModule from increasing the size of nltk.__dict__ (#3033)
17+ * Fix CoreNLPServer non-default port issue (#3031)
18+ * Add "acion" suffix to the Spanish SnowballStemmer (#3030)
19+ * Allow loading WordNet without OMW (#3026)
20+ * Use input() in nltk.chat.chatbot() for Jupyter support (#3022)
21+ * Fix edit_distance_align() in distance.py (#3017)
22+ * Tackle performance and accuracy regression of sentence tokenizer since NLTK 3.6.6 (#3014)
23+ * Add the Iota operator to semantic logic (#3010)
24+ * Resolve critical errors in WordNet app (#3008)
25+ * Resolve critical error in CHILDES Corpus (#2998)
26+ * Make WordNet information_content() accept adjective satellites (#2995)
27+ * Add "strict=True" parameter to CoreNLP (#2993, #3043)
28+ * Resolve issue with WordNet's synset_from_sense_key (#2988)
29+ * Handle WordNet synsets that were lost in mapping (#2985)
30+ * Resolve TypeError in Boxer (#2979)
31+ * Add function to retrieve WordNet synonyms (#2978)
32+ * Warn about nonexistent OMW offsets instead of raising an error (#2974)
33+ * Fix missing ic argument in res, jcn and lin similarity functions of WordNet (#2970)
34+ * Add support for the extended OMW (#2946)
35+ * Fix LC cutoff policy of text tiling (#2936)
36+ * Optimize ConditionalFreqDist.__add__ performance (#2939)
37+ * Add Markdown corpus reader (#2902)
38+
39+ Thanks to the following contributors to 3.8:
40+ Alexandre Perez-Lebel, David Lukes, Eric Kafe, Fernando Carranza, Heungson Lee,
41+ Hoyeol Kim, James Huang, Jelle Zijlstra, Louis-Justin Tallot, M.K. Pawelkiewicz,
42+ Jan Lennartz, Malinda Dilhara, Martin Kondratzky, Rob Malouf, Saud Kadiri,
43+ Siddhesh Mhadnak, Stephan Hasler, Steve Smith, Tom Aarsen, Tyler Sheaffer,
44+ Yue Zhao, cestwc, elespike, purificant, richardyy1188
45+
146Version 3.7 2022-02-09
247
348* Improve and update the NLTK team page on nltk.org (#2855, #2941)
449* Drop support for Python 3.6, support Python 3.10 (#2920)
550
51+ Thanks to the following contributors to 3.7:
52+ Tom Aarsen
53+
654Version 3.6.7 2021-12-28
755
856* Resolve IndexError in `sent_tokenize` and `word_tokenize` (#2922)
957
58+ Thanks to the following contributors to 3.6.7:
59+ Tom Aarsen
60+
1061Version 3.6.6 2021-12-21
1162
1263* Refactor `gensim.doctest` to work for gensim 4.0.0 and up (#2914)
@@ -44,9 +95,9 @@ Version 3.6.6 2021-12-21
4495* Fix TypeError: _pretty() takes 1 positional argument but 2 were given in sem/drt.py (#2854)
4596* Replace `http` with `https` in most URLs (#2852)
4697
47- Thanks to the following contributors to 3.6.6
98+ Thanks to the following contributors to 3.6.6:
4899Adam Hawley, BatMrE, Danny Sepler, Eric Kafe, Gavish Poddar, Panagiotis Simakis,
49- RnDevelover, Robby Horvath, Tom Aarsen, Yuta Nakamura, Mohaned Mashaly
100+ RnDevelover, Robby Horvath, Tom Aarsen, Yuta Nakamura, Mohaned Mashaly
50101
51102Version 3.6.5 2021-10-11
52103
@@ -60,7 +111,7 @@ Version 3.6.5 2021-10-11
60111* specify minimum regex version that supports regex.Pattern
61112* avoid re.Pattern and regex.Pattern which fail for Python 3.6, 3.7
62113
63- Thanks to the following contributors to 3.6.5
114+ Thanks to the following contributors to 3.6.5:
64115Tom Aarsen, Saibo Geng, Mohaned Mashaly, Dimitri Papadopoulos, Danny Sepler,
65116Ahmet Yildirim, RnDevelover, yutanakamura
66117
@@ -75,7 +126,7 @@ Version 3.6.4 2021-10-01
75126* replace travis badge with github actions badge
76127* add SECURITY.md
77128
78- Thanks to the following contributors to 3.6.4
129+ Thanks to the following contributors to 3.6.4:
79130Tom Aarsen, Mohaned Mashaly, Dimitri Papadopoulos Orfanos, purificant, Danny Sepler
80131
81132Version 3.6.3 2021-09-19
@@ -96,7 +147,7 @@ Version 3.6.3 2021-09-19
96147* Optional show arg for FreqDist.plot, ConditionalFreqDist.plot
97148* edit_distance now computes Damerau-Levenshtein edit-distance
98149
99- Thanks to the following contributors to 3.6.3
150+ Thanks to the following contributors to 3.6.3:
100151Tom Aarsen, Abhijnan Bajpai, Michael Wayne Goodman, Michał Górny, Maarten ter Huurne,
101152Manu Joseph, Eric Kafe, Ilia Kurenkov, Daniel Loney, Rob Malouf, Mohaned Mashaly,
102153purificant, Danny Sepler, Anthony Sottile
@@ -107,7 +158,7 @@ Version 3.6.2 2021-04-20
107158* fix bug in NgramAssocMeasures (order preserving fix)
108159* fixes for compatibility with Pypy 7.3.4
109160
110- Thanks to the following contributors to 3.6.2
161+ Thanks to the following contributors to 3.6.2:
111162Ruben Cartuyvels, Rob Malouf, Dalton Pearson, Danny Sepler
112163
113164Version 3.6 2021-04-07
@@ -124,7 +175,7 @@ Version 3.6 2021-04-07
124175
125176Thanks to the following contributors to 3.6:
126177Tom Aarsen, K Abainia, Akshita Bhagia, Andrew Bird, Thomas Bird,
127- Tom Conroy, CubieDev, Christopher Hench, Andrew Jorgensen, Eric Kafe,
178+ Tom Conroy, Christopher Hench, Andrew Jorgensen, Eric Kafe,
128179Ilia Kurenkov, Yeting Li, Joseph Manu, Marius Mather, Denali Molitor,
129180Jacob Moorman, Philippe Ombredanne, Vassilis Palassopoulos, Ram Rachum,
130181Danny Sepler, Or Sharir, Brad Solomon, Hiroki Teranishi, Constantin Weisser,
0 commit comments