-
Notifications
You must be signed in to change notification settings - Fork 27
/
History.txt
21 lines (17 loc) · 865 Bytes
/
History.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# rWordNet 1.0.0
* Performance fixes for the lookup
* Find using Lemma.find / Lemma.find_all
* using ruby style constant names like `VerbPointers` -> `VERB_POINTERS`
* renamed WordNet::WordNetDB to WordNet::DB
* renaming a few methods in Lemma like `p_cnt` -> `pointer_count`
* make Pointer a real class
* renaming a few methods in SynSet like `get_relation` -> `relation`
# rWordNet 0.1.3
* Fixed a terrible bug that caused Indices to re-read the *entire* database on every failed lookup.
# rWordNet 0.1.2
* Added unique (integer) ids to lemmas [Wolfram Sieber]
# rWordNet 0.1.1
* Maintenance release, fixing some broken unit tests.
* Updated the interface for using Indices; where before you could instantiate an Index by calling, e.g., NounIndex.new, now you instantiate them as singleton instances (`NounIndex.instance`).
# rWordNet 0.1.0
* Initial release