Skip to content

Commit 3245d28

Browse files
committed
bump version to 0.9.0
1 parent 50b8c6f commit 3245d28

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

.bumpversion.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.8.0
2+
current_version = 0.9.0
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>\w+))?
@@ -20,8 +20,8 @@ search = {current_version}
2020
replace = {new_version}
2121

2222
[bumpversion:file:src/scrapy_redis/__init__.py]
23-
search = __version__ = '{current_version}'
24-
replace = __version__ = '{new_version}'
23+
search = __version__ = "{current_version}"
24+
replace = __version__ = "{new_version}"
2525

2626
[bumpversion:file:.cookiecutterrc]
2727
search = version: {current_version}

.cookiecutterrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ cookiecutter:
1515
use_pypi_deployment_with_travis: n
1616
use_pytest: y
1717
use_requiresio: y
18-
version: 0.8.0
18+
version: 0.9.0
1919
year: 2011-2022

HISTORY.rst

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ History
44

55
.. comment:: bumpversion marker
66

7+
0.9.0 (2024-07-06)
8+
------------------
9+
* Fixed ``Scheduler`` not compatible with BaseDupeFilter (#294)
10+
* Added precommit hooks.
11+
* Switched to Python 3.12 as default build version.
12+
713
0.8.0 (2024-07-03)
814
------------------
915
* Fixed request fingerprint method.

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.8.0
1+
0.9.0

src/scrapy_redis/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__author__ = "R Max Espinoza"
44
__email__ = "hey at rmax.dev"
5-
__version__ = "0.8.0"
5+
__version__ = "0.9.0"

0 commit comments

Comments
 (0)