diff --git a/AUTHORS.txt b/AUTHORS.txt index 1a51e12..ed51095 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -1 +1,2 @@ Peter Inglesby +Keane O'Kelley diff --git a/HISTORY.rst b/HISTORY.rst index aa51940..8a895b2 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,11 @@ Release History =============== +0.2.1 (2018-06-29) +****************** + +- Add the ``verify`` parameter to ``crawl()``. + 0.2.0 (2017-10-09) ****************** diff --git a/setup.cfg b/setup.cfg index 3fd4d26..9053dc5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.2.1 commit = True tag = True diff --git a/src/http_crawler/__init__.py b/src/http_crawler/__init__.py index 78b5846..2b04667 100644 --- a/src/http_crawler/__init__.py +++ b/src/http_crawler/__init__.py @@ -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,