diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 88678127..a3c78c74 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.3 +current_version = 1.1.0 commit = True tag = True tag_name = v{new_version} diff --git a/parsel/__init__.py b/parsel/__init__.py index 8bd2bb42..113644eb 100644 --- a/parsel/__init__.py +++ b/parsel/__init__.py @@ -5,7 +5,7 @@ __author__ = 'Scrapy project' __email__ = 'info@scrapy.org' -__version__ = '1.0.3' +__version__ = '1.1.0' from parsel.selector import Selector, SelectorList # NOQA from parsel.csstranslator import css2xpath # NOQA diff --git a/setup.py b/setup.py index 3592c916..2f42c5bd 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name='parsel', - version='1.0.3', + version='1.1.0', 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",