Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.23.0
current_version = 1.24.0
commit = True
tag = True
tag_name = {new_version}
Expand Down
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Release notes
=============

1.24.0 (2025-04-11)
-------------------

- feature: Allow filtering jobs in ``ZyteJobsComparisonMonitor`` based on job arguments (`PR#461 <https://github.com/scrapinghub/spidermon/pull/461>`_)
- feature: Use ``SHUB_VIRTUAL_SPIDER`` as spider name when available for better identification of virtual spiders (`PR#462 <https://github.com/scrapinghub/spidermon/pull/462>`_)
- chore: Update `setup.py` package information (`PR#458 <https://github.com/scrapinghub/spidermon/pull/458>`_)

1.23.0 (2024-10-31)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="spidermon",
version="1.23.0",
version="1.24.0",
url="https://github.com/scrapinghub/spidermon",
project_urls={
"Documentation": "https://spidermon.readthedocs.io/",
Expand Down
2 changes: 1 addition & 1 deletion spidermon/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.23.0
1.24.0
2 changes: 1 addition & 1 deletion spidermon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.23.0"
__version__ = "1.24.0"

from .core.monitors import Monitor
from .core.suites import MonitorSuite
Expand Down