diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5415c8e..adaa980 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.9.0 +current_version = 1.9.1 commit = True tag = True tag_name = v{new_version} diff --git a/NEWS b/NEWS index 8f8e3b6..034727b 100644 --- a/NEWS +++ b/NEWS @@ -3,7 +3,7 @@ History ------- -1.9.1 (YYYY-MM-DD) +1.9.1 (2024-04-08) ~~~~~~~~~~~~~~~~~~ * Removed the dependency on ``pytest-runner``. diff --git a/parsel/__init__.py b/parsel/__init__.py index a6253e1..5fdbf35 100644 --- a/parsel/__init__.py +++ b/parsel/__init__.py @@ -5,7 +5,7 @@ __author__ = "Scrapy project" __email__ = "info@scrapy.org" -__version__ = "1.9.0" +__version__ = "1.9.1" __all__ = [ "Selector", "SelectorList", diff --git a/setup.py b/setup.py index 876da6b..50e1d30 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="parsel", - version="1.9.0", + version="1.9.1", description="Parsel is a library to extract data from HTML and XML using XPath and CSS selectors", long_description=readme + "\n\n" + history, long_description_content_type="text/x-rst",