From 2ef81627b5127fc5be877538871862d09b1e2480 Mon Sep 17 00:00:00 2001 From: R Max Espinoza Date: Wed, 3 Jul 2024 00:57:05 +0200 Subject: [PATCH] bump version to 0.8.0 (#296) --- .bumpversion.cfg | 2 +- .cookiecutterrc | 2 +- .gitattributes | 3 +++ .python-version | 1 + HISTORY.rst | 7 +++++++ VERSION | 2 +- src/scrapy_redis/__init__.py | 2 +- 7 files changed, 15 insertions(+), 4 deletions(-) create mode 100644 .gitattributes create mode 100644 .python-version diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7969b7da..b39187ef 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.3 +current_version = 0.8.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P\w+))? diff --git a/.cookiecutterrc b/.cookiecutterrc index 03106bc7..f106539b 100644 --- a/.cookiecutterrc +++ b/.cookiecutterrc @@ -15,5 +15,5 @@ cookiecutter: use_pypi_deployment_with_travis: n use_pytest: y use_requiresio: y - version: 0.7.3 + version: 0.8.0 year: 2011-2022 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..16ef5c5f --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +# GitHub syntax highlighting +pixi.lock linguist-language=YAML + diff --git a/.python-version b/.python-version new file mode 100644 index 00000000..9919bf8c --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.10.13 diff --git a/HISTORY.rst b/HISTORY.rst index 410690b1..8999d95a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,13 @@ History .. comment:: bumpversion marker +0.8.0 (2024-07-03) +------------------ +* Fixed request fingerprint method. +* Fixed support for Scrapy 2.6+. +* Fixed tox tests and github workflow. +* Deprecated ``REDIS_START_URLS_BATCH_SIZE``. + 0.7.3 (2022-07-21) ------------------ * Move docs to GitHub Wiki diff --git a/VERSION b/VERSION index f38fc539..a3df0a69 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.7.3 +0.8.0 diff --git a/src/scrapy_redis/__init__.py b/src/scrapy_redis/__init__.py index 5ebe9f7f..c58d99dd 100644 --- a/src/scrapy_redis/__init__.py +++ b/src/scrapy_redis/__init__.py @@ -7,4 +7,4 @@ __author__ = 'Rolando Espinoza' __email__ = 'rolando at rmax.io' -__version__ = '0.7.3' +__version__ = '0.8.0'