File tree Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 11Changes
22=======
33
4+ 0.6 (2017-12-29)
5+ ----------------
6+
7+ * A complete example (contact extractor) is added to the repo;
8+ * fixed a lot of issues in the annotated data;
9+ * fixed loading of ``<title> `` annotations;
10+ * all annotated data is converted from GATE to WebAnnotator format;
11+ * text tokenizers allow to optionally return original token positions;
12+ * converting text from tokenized to raw is now lossless;
13+ * ``webstruct.webannotator.to_webannotator `` is rewritten;
14+ * ``<script> ``, ``<style> `` elements, HTML comments and processing
15+ instructions are ignored when they are inside entities;
16+ * tutorial is rewritten for CRFSuite;
17+ * Wapiti support is fixed in Python 3;
18+ * top-N parsing support when using Wapiti; an option to merge top N chains,
19+ to increase recall;
20+ * benchmarking script;
21+ * don't declare Python 3.3 support (it is EOL).
22+
4230.5 (2017-05-10)
524----------------
625
Original file line number Diff line number Diff line change @@ -93,9 +93,9 @@ def __getattr__(cls, name):
9393# built documents.
9494#
9595# The short X.Y version.
96- version = '0.5 '
96+ version = '0.6 '
9797# The full version, including alpha/beta/rc tags.
98- release = '0.5 '
98+ release = '0.6 '
9999
100100# The language for content autogenerated by Sphinx. Refer to documentation
101101# for a list of supported languages.
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22from setuptools import setup , find_packages
33
4- version = '0.5 '
4+ version = '0.6 '
55
66setup (
77 name = 'webstruct' ,
You can’t perform that action at this time.
0 commit comments