Skip to content

Commit

Permalink
Bump version: 1.5.2 → 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gallaecio committed May 7, 2020
1 parent d6fecd3 commit 7ed4b24
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
[bumpversion]
current_version = 1.5.2
current_version = 1.6.0
commit = True
tag = True
tag_name = v{new_version}

[bumpversion:file:setup.py]

[bumpversion:file:parsel/__init__.py]

2 changes: 1 addition & 1 deletion parsel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

__author__ = 'Scrapy project'
__email__ = '[email protected]'
__version__ = '1.5.2'
__version__ = '1.6.0'

from parsel.selector import Selector, SelectorList # NOQA
from parsel.csstranslator import css2xpath # NOQA
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def has_environment_marker_platform_impl_support():
install_requires = [
'w3lib>=1.19.0',
'lxml',
'six>=1.5.2',
'six>=1.6.0',
'cssselect>=0.9'
]
extras_require = {}
Expand All @@ -41,7 +41,7 @@ def has_environment_marker_platform_impl_support():

setup(
name='parsel',
version='1.5.2',
version='1.6.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",
Expand Down

0 comments on commit 7ed4b24

Please sign in to comment.