Bump version 0.9.7

This commit is contained in:
Ken Cochrane 2023-02-27 17:39:23 -05:00
parent b0f90e690a
commit 6111eb81da
3 changed files with 8 additions and 2 deletions

View file

@ -2,6 +2,12 @@
Changes
=======
0.9.7
=====
- Fix bug related to using a redis version less than 6 and not having a password. [@kencochrane]
- Fix bug in remove_prefix method [@dashgin]
0.9.6
=====

View file

@ -1,3 +1,3 @@
VERSION = (0, 9, 6)
VERSION = (0, 9, 7)
__version__ = ".".join((map(str, VERSION)))

View file

@ -59,7 +59,7 @@ setup(
include_package_data=True,
packages=find_packages(),
package_data=get_package_data("defender"),
python_requires='~=3.5',
python_requires='~=3.7',
install_requires=["Django", "redis"],
tests_require=[
"mockredispy>=2.9.0.11,<3.0",