diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a0e930d..4160636 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.0 +current_version = 1.8.0 commit = True tag = True tag_name = v{new_version} diff --git a/NEWS b/NEWS index 9432f60..6a8994b 100644 --- a/NEWS +++ b/NEWS @@ -3,7 +3,7 @@ History ------- -1.8.0 (YYYY-MM-DD) +1.8.0 (2023-04-18) ~~~~~~~~~~~~~~~~~~ * Add support for JMESPath: you can now create a selector for a JSON document diff --git a/parsel/__init__.py b/parsel/__init__.py index a0d7f7c..7112f82 100644 --- a/parsel/__init__.py +++ b/parsel/__init__.py @@ -5,7 +5,7 @@ __author__ = "Scrapy project" __email__ = "info@scrapy.org" -__version__ = "1.7.0" +__version__ = "1.8.0" __all__ = [ "Selector", "SelectorList", diff --git a/setup.py b/setup.py index 87f64dc..cd1108f 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="parsel", - version="1.7.0", + version="1.8.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",