Skip to content

Commit

Permalink
bump version to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmax committed Jul 6, 2024
1 parent 50b8c6f commit 3245d28
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.8.0
current_version = 0.9.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>\w+))?
Expand All @@ -20,8 +20,8 @@ search = {current_version}
replace = {new_version}

[bumpversion:file:src/scrapy_redis/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bumpversion:file:.cookiecutterrc]
search = version: {current_version}
Expand Down
2 changes: 1 addition & 1 deletion .cookiecutterrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ cookiecutter:
use_pypi_deployment_with_travis: n
use_pytest: y
use_requiresio: y
version: 0.8.0
version: 0.9.0
year: 2011-2022
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ History

.. comment:: bumpversion marker

0.9.0 (2024-07-06)
------------------
* Fixed ``Scheduler`` not compatible with BaseDupeFilter (#294)
* Added precommit hooks.
* Switched to Python 3.12 as default build version.

0.8.0 (2024-07-03)
------------------
* Fixed request fingerprint method.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.0
0.9.0
2 changes: 1 addition & 1 deletion src/scrapy_redis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = "R Max Espinoza"
__email__ = "hey at rmax.dev"
__version__ = "0.8.0"
__version__ = "0.9.0"

0 comments on commit 3245d28

Please sign in to comment.