Skip to content

Commit

Permalink
Feature/release 1.22.0 (#449)
Browse files Browse the repository at this point in the history
* Add changes for 1.22.0 release

* Bump version: 1.21.0 → 1.22.0
  • Loading branch information
VMRuiz committed May 8, 2024
1 parent a2524ed commit 6ea9f67
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
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.21.0
current_version = 1.22.0
commit = True
tag = True
tag_name = {new_version}
Expand Down
10 changes: 10 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
Release notes
=============

1.22.0 (2024-05-08)
-------------------

- bugs: Fix ``_get_jobs`` to use the proper parameter for tag filtering in ``ZyteJobsComparisonMonitor`` (`PR#446 <https://github.com/scrapinghub/spidermon/pull/446>`_)
- bugs: Fix ``_get_jobs`` method returning an incorrect number of jobs in ``ZyteJobsComparisonMonitor`` (`PR#444 <https://github.com/scrapinghub/spidermon/pull/444>`_)
- docs: Add ``SPIDERMON_MONITOR_SKIPPING_RULES`` documentation and examples on settings page (`PR#447 <https://github.com/scrapinghub/spidermon/pull/447>`_)
- chore: Add Python 3.12 support (`PR#443 <https://github.com/scrapinghub/spidermon/pull/443>`_) (`PR#448 <https://github.com/scrapinghub/spidermon/pull/448>`_)


1.21.0 (2024-04-18)
-------------------

- bug: Fix CI/CD pipelines not working due to changes on Scrapy (`PR#426 <https://github.com/scrapinghub/spidermon/pull/426>`_)
- bug: Fix TypeError in ``PeriodicItemCountMonitor`` when item_scraped_count was not defined the first time it was checked (`PR#436 <https://github.com/scrapinghub/spidermon/pull/436>`_)
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.21.0",
version="1.22.0",
url="https://github.com/scrapinghub/spidermon",
author="Zyte",
author_email="opensource@zyte.com",
Expand Down
2 changes: 1 addition & 1 deletion spidermon/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.21.0
1.22.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.21.0"
__version__ = "1.22.0"

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

0 comments on commit 6ea9f67

Please sign in to comment.