Skip to content

Commit 5a3f39e

Browse files
committed
v0.5
1 parent a5282a7 commit 5a3f39e

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

CHANGES.rst

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
Changes
22
=======
33

4+
0.5 (2017-05-10)
5+
----------------
6+
7+
* webstruct.model.NER now uses ``requests`` library to make HTTP requests;
8+
* changed default headers used by webstruct.model.NER;
9+
* new ``webstruct.infer_domain`` module useful for proper cross-validation;
10+
* webstruct.webannotator.to_webannotator got an option to add ``<base>``
11+
tag with the original URL to the page;
12+
* fixed a warning in webstruct.gazetteers.geonames.read_geonames;
13+
* add a few more country names to countries.txt list.
14+
415
0.4.1 (2016-11-28)
516
------------------
617

@@ -16,7 +27,7 @@ Changes
1627
WebAnnotator;
1728
* fixed 'dont_penalize' argument of webstruct.NER.extract_groups_from_url;
1829
* new webstruct.model.extract_entity_groups utility function;
19-
* HtmlTokenizer and HtmlToken are modev to their own module
30+
* HtmlTokenizer and HtmlToken are moved to their own module
2031
(webstruct.html_tokenizer);
2132
* test improvements;
2233

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,16 +86,16 @@ def __getattr__(cls, name):
8686

8787
# General information about the project.
8888
project = u'Webstruct'
89-
copyright = u'2014, Scrapinghub Inc.'
89+
copyright = u'2014-2017, Scrapinghub Inc.'
9090

9191
# The version info for the project you're documenting, acts as replacement for
9292
# |version| and |release|, also used in various other places throughout the
9393
# built documents.
9494
#
9595
# The short X.Y version.
96-
version = '0.4'
96+
version = '0.5'
9797
# The full version, including alpha/beta/rc tags.
98-
release = '0.4'
98+
release = '0.5'
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.4.1'
4+
version = '0.5'
55

66
setup(
77
name='webstruct',

0 commit comments

Comments
 (0)