Skip to content

Commit d5a7fcf

Browse files
committed
v0.6
1 parent d8b1984 commit d5a7fcf

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

CHANGES.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
Changes
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+
423
0.5 (2017-05-10)
524
----------------
625

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
from setuptools import setup, find_packages
33

4-
version = '0.5'
4+
version = '0.6'
55

66
setup(
77
name='webstruct',

0 commit comments

Comments
 (0)