forked from pyconll/pyconll
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCHANGELOG
More file actions
264 lines (154 loc) · 5.76 KB
/
CHANGELOG
File metadata and controls
264 lines (154 loc) · 5.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
CHANGELOG
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to
Semantic Versioning.
[2.2.1] - 2019-11-17
Fixed
- Branding information typo within setup.py
- Spurious command in Makefile recipe
Added
- Added python_requires clause to setup.py to prevent installation on
unsupported platforms
- Include information in README about setuptools version needed to
properly package within python_requires information
- Conda packaging support along with information in README about new
installation method
Changed
- pyconll version is now housed in .version file so that this version
only needs to be changed in one place before release.
[2.2.0] - 2019-10-01
Changed
- Use slots on Token and Sentence class for more efficient memory
usage with large amounts of objects
- Remove source fields on Token and Sentence. These were not an
explicit part of the public API so this is not considered a
breaking change.
[2.1.1] - 2019-09-04
Fixed
- Solved math.inf issue with python 3.4 where it does not exist
[2.1.0] - 2019-08-30
Fixed
- The example reannotate\_ngrams.py was out of sync with the function
return type
Added
- `find_nonprojective_deps`` was added to look for non-projective
dependencies within a sentence
[2.0.0] - 2019-05-09
Fixed
- find_ngrams in the util module did not properly match
case insensitivity.
- conllable is now properly included in wildcard imports from pyconll.
- Issue when loading a CoNLL file over a network if the file contained
UTF-8 characters. requests default assumes ASCII enconding on
HTTP responses.
- The Token columns deps and feats were not properly sorted by
attribute (either numeric index or case invariant
lexicographic sort) on serialization
Changed
- Clearer and more consise documentation
- find_ngrams now returns the matched tokens as the last element of
the yielded tuple.
Removed
- Document and paragraph ids on Sentences
- Line numbers on Tokens and Sentences
- Equality comparison on Tokens and Sentences. These types are mutable
and implementing equality (with no hash overriding) causes issues
for API clients.
- SentenceTree module. This functionaliy was moved to the Sentence
class method to_tree.
Added
- to_tree method on Sentence that returns the Tree representing the
Sentence dependency structure
Security
- Updates to requirements.txt to patch Jinja2 and requests
[1.1.4] - 2019-04-15
Fixed
- Parsing of underscore's for the form and lemma field, would
automatically default to None, rather than the intended behavior.
[1.1.3] - 2019-01-03
Fixed
- When used on Windows, the default encoding of Windows-1252 was used
when loading CoNLL-U files, however, CoNLL-U is UTF-8. This is
now fixed.
[1.1.2] - 2018-12-28
Added
- _Getting Started_ page on the documentation to make easier for
newcomers
Fixed
- Versioning on docs page which had not been properly updated
- Some documentation errors
- requests version used in requirements.txt was insecure and updated
to newer version
[1.1.1] - 2018-12-10
Fixed
- The pyconll.tree module was not properly included before in setup.py
[1.1.0] - 2018-11-11
Added
- pylint to build process
- Conllable abstract base class to mark CoNLL serializable components
- Tree data type construction of a sentence
Changed
- Linting patches suggested by pylint.
- Removed _end_line_number from Sentence constructor. This is an
internal patch, as this parameter was not meant to be used
by callers.
- New, improved, and clearer documentation
- Update of requests dependency due to security flaw
[1.0.1] - 2018-09-14
Changed
- Removed test packages from final shipped package.
[1.0] - 2018-09-13
Added
- There is now a FormatError to help make debugging easier if the
internal data of a Token is put into an invalid state. This error
will be seen on running Token#conll.
- Certain token fields with empty values, were not output when calling
Token#conll and were instead ignored. This situation now causes
a FormatError.
- Stricter parsing and validation of general CoNLL guidelines.
Fixed
- DEPS parsing was broken before and assumed that there was less
information than is actually possible in the UD format. This means
that now deps is a tuple with cardinality 4.
[0.3.1] - 2018-08-08
Fixed
- Fixed issue with submodules not being packaged in build
[0.3] - 2018-07-28
Added
- Ability to easily load CoNLL files from a network path (url)
- Some parsing validation. Before the error was not caught up front so
the error could unexpectedly later show up.
- Sentence slicing had an issue before if either the start or end
was omittted.
- More documentation and examples.
- Conll is now a MutableSequence, so it handles methods beyond its
implementation as well as defined by python.
Fixed
- Some small bug fixes with parsing the token dicts.
[0.2.3] - 2018-07-23
Fixed
- Issues with documentation since docstrings were not in RST. Fixed by
using napoleon sphinx extension
Added
- A little more docs
- More README info
- Better examples
[0.2.2] - 2018-07-18
Fixed
- Installation issues again with wheel when using pip.
[0.2.1] - 2018-07-18
Fixed
- Installation issues when using pip
[0.2] - 2018-07-16
Added
- More documentation
- Util package for convenient and common logic
[0.1.1] - 2018-07-15
Added
- Documentation which can be found here.
- Small documentation changes on methods.
[0.1] - 2018-07-04
Added
- Everything. This is the first release of this package. The most
notable absence is documentation which will be coming in a
near-future release.