diff --git a/CHANGES.md b/CHANGES.md index 1eaf001..5c18b73 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +## 0.3.0 (2013-03-23) +Added `datCrawlerWorker` class: +- This now does the download and crawling "phases" +- new: `datCrawl.worker(url)` and `datCrawl.match(url)`, both returns a `datCrawlerWorker` + ## 0.2.0 (2013-03-16) **Modified crawler behaviour** - Now every regular expression of a certain URL **needs** a group called `url`. That group will be the URL sent to the associated `Downloader`. diff --git a/setup.py b/setup.py index 8a57be6..e4886d3 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='datCrawl', - version='0.2.0', + version='0.3.0', author='Felipe Martin', author_email='fmartingr@me.com', packages=['datCrawl'],