Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
Peter Inglesby <https://github.com/inglesp>
Keane O'Kelley <https://github.com/keaneokelley>
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Release History
===============

0.2.1 (2018-06-29)
******************

- Add the ``verify`` parameter to ``crawl()``.

0.2.0 (2017-10-09)
******************

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.0
current_version = 0.2.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion src/http_crawler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import tinycss2


__version__ = '0.2.0'
__version__ = '0.2.1'


def crawl(base_url, follow_external_links=True, ignore_fragments=True,
Expand Down