diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 734ff999..88678127 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.2 +current_version = 1.0.3 commit = True tag = True tag_name = v{new_version} diff --git a/parsel/__init__.py b/parsel/__init__.py index d1c9d69c..0dab114c 100644 --- a/parsel/__init__.py +++ b/parsel/__init__.py @@ -5,6 +5,6 @@ __author__ = 'Scrapy project' __email__ = 'info@scrapy.org' -__version__ = '1.0.2' +__version__ = '1.0.3' from parsel.selector import Selector, SelectorList # NOQA diff --git a/setup.py b/setup.py index d1105938..06587431 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name='parsel', - version='1.0.2', + version='1.0.3', description="Parsel is a library to extract data from HTML and XML using XPath and CSS selectors", long_description=readme + '\n\n' + history, author="Scrapy project",