diff --git a/HISTORY.rst b/HISTORY.rst index aa447e3..8a9dd57 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -5,6 +5,9 @@ History ++++++++++++++++++ - Use unicode for every string +- Fix running test.py from another directory +- Rename module `models` to `core` +- Remove in_ignorecase() 1.2.0 (2013-10-15) diff --git a/MANIFEST.in b/MANIFEST.in index a84ba58..f2460b0 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,5 @@ include LICENSE -include HISTORY.rst include README.rst +include HISTORY.rst include requirements.txt +include requirements_test.txt diff --git a/haul/__init__.py b/haul/__init__.py index 458ec89..4c97ea9 100644 --- a/haul/__init__.py +++ b/haul/__init__.py @@ -1,6 +1,6 @@ # coding: utf-8 -__version__ = '1.2.0' +__version__ = '1.3.0' from .api import find_images from .core import Haul, HaulResult diff --git a/setup.py b/setup.py index b5cff48..96dfd87 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ setup( name='haul', - version='1.2.0', + version='1.3.0', description='An Extensible Image Crawler', long_description=long_description, keywords='haul web image content scraper parser crawler',