2
2
3
3
## [ Unreleased]
4
4
5
+ ## [ v0.7.0]
6
+
7
+ ** Release date: 2021-06-09**
8
+
9
+ ### Added
10
+
11
+ * Support for approximate word searches; on by default, configurable
12
+ only by instantiating a ` wn.Wordnet ` object ([ #105 ] )
13
+ * ` wn.morphy ` ([ #19 ] )
14
+ * ` wn.Wordnet.lemmatizer ` attribute ([ #8 ] )
15
+ * ` wn.web ` ([ #116 ] )
16
+ * ` wn.Sense.relations() ` ([ #82 ] )
17
+ * ` wn.Synset.relations() ` ([ #82 ] )
18
+
19
+ ### Changed
20
+
21
+ * ` wn.lmf.load() ` now takes a ` progress_handler ` parameter ([ #46 ] )
22
+ * ` wn.lmf.scan_lexicons() ` no longer returns sets of relation types or
23
+ lexfiles; ` wn.add() ` now gets these from loaded lexicons instead
24
+ * ` wn.util.ProgressHandler `
25
+ - Now has a ` refresh_interval ` parameter; updates only trigger a
26
+ refresh after the counter hits the threshold set by the interval
27
+ - The ` update() ` method now takes a ` force ` parameter to trigger a
28
+ refresh regardless of the refresh interval
29
+ * ` wn.Wordnet `
30
+ - Initialization now takes a ` normalizer ` parameter ([ #105 ] )
31
+ - Initialization now takes a ` lemmatizer ` parameter ([ #8 ] )
32
+ - Initialization now takes a ` search_all_forms ` parameter ([ #115 ] )
33
+ - ` Wordnet.words() ` , ` Wordnet.senses() ` and ` Wordnet.synsets() ` now
34
+ use any specified lemmatization or normalization functions to
35
+ expand queries on word forms ([ #105 ] )
36
+
37
+ ### Fixed
38
+
39
+ * ` wn.Synset.ili ` for proposed ILIs now works again (#117 )
40
+
5
41
6
42
## [ v0.6.2]
7
43
@@ -311,6 +347,7 @@ the https://github.com/nltk/wordnet/ code which had been effectively
311
347
abandoned, but this is an entirely new codebase.
312
348
313
349
350
+ [ v0.7.0 ] : ../../releases/tag/v0.7.0
314
351
[ v0.6.2 ] : ../../releases/tag/v0.6.2
315
352
[ v0.6.1 ] : ../../releases/tag/v0.6.1
316
353
[ v0.6.0 ] : ../../releases/tag/v0.6.0
@@ -325,9 +362,12 @@ abandoned, but this is an entirely new codebase.
325
362
[ unreleased ] : ../../tree/main
326
363
327
364
[ #7 ] : https://github.com/goodmami/wn/issues/7
365
+ [ #8 ] : https://github.com/goodmami/wn/issues/8
328
366
[ #15 ] : https://github.com/goodmami/wn/issues/15
329
367
[ #17 ] : https://github.com/goodmami/wn/issues/17
368
+ [ #19 ] : https://github.com/goodmami/wn/issues/19
330
369
[ #23 ] : https://github.com/goodmami/wn/issues/23
370
+ [ #46 ] : https://github.com/goodmami/wn/issues/46
331
371
[ #47 ] : https://github.com/goodmami/wn/issues/47
332
372
[ #58 ] : https://github.com/goodmami/wn/issues/58
333
373
[ #59 ] : https://github.com/goodmami/wn/issues/59
@@ -348,6 +388,7 @@ abandoned, but this is an entirely new codebase.
348
388
[ #78 ] : https://github.com/goodmami/wn/issues/78
349
389
[ #79 ] : https://github.com/goodmami/wn/issues/79
350
390
[ #81 ] : https://github.com/goodmami/wn/issues/81
391
+ [ #82 ] : https://github.com/goodmami/wn/issues/82
351
392
[ #83 ] : https://github.com/goodmami/wn/issues/83
352
393
[ #86 ] : https://github.com/goodmami/wn/issues/86
353
394
[ #87 ] : https://github.com/goodmami/wn/issues/87
@@ -362,3 +403,6 @@ abandoned, but this is an entirely new codebase.
362
403
[ #105 ] : https://github.com/goodmami/wn/issues/105
363
404
[ #106 ] : https://github.com/goodmami/wn/issues/106
364
405
[ #108 ] : https://github.com/goodmami/wn/issues/108
406
+ [ #115 ] : https://github.com/goodmami/wn/issues/115
407
+ [ #116 ] : https://github.com/goodmami/wn/issues/116
408
+ [ #117 ] : https://github.com/goodmami/wn/issues/117
0 commit comments