diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b0dccfa6..2df447b0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.2 +current_version = 0.9.3 commit = True tag = True tag_name = v{new_version} diff --git a/parsel/__init__.py b/parsel/__init__.py index 1fc916fe..15f3680d 100644 --- a/parsel/__init__.py +++ b/parsel/__init__.py @@ -5,6 +5,6 @@ __author__ = 'Scrapy project' __email__ = 'info@scrapy.org' -__version__ = '0.9.2' +__version__ = '0.9.3' from parsel.selector import Selector, SelectorList # NOQA diff --git a/setup.py b/setup.py index 99781262..946b7eca 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name='parsel', - version='0.9.2', + version='0.9.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",