Prepare 3.1.0 release (confirmed Django 4.1 support)

This commit is contained in:
Claude Paroz 2023-03-19 12:40:06 +01:00
parent 90593c07b7
commit 30c727e653
3 changed files with 9 additions and 8 deletions

View File

@ -42,16 +42,15 @@ jobs:
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
django-version: ['2.2', '3.2', '4.0']
django-version: ['3.2', '4.0', '4.1']
xapian-version: ['1.4.19']
filelock-version: ['3.4.2']
exclude:
# Django added python 3.10 support in 3.2.9
- python-version: '3.10'
django-version: '2.2'
# Django dropped python 3.7 support in 4.0
- python-version: '3.7'
django-version: '4.0'
- python-version: '3.7'
django-version: '4.1'
steps:
- name: Set up Python ${{ matrix.python-version }}

View File

@ -2,10 +2,12 @@
xapian-haystack Changelog
=========================
Unreleased
----------
v3.1.0 (2023-03-19)
-------------------
- Add DJANGO_CT, DJANGO_ID, ID to be used with '__exact' internally.
- Ability to configure ngram min and max lengths.
- Supported Django versions: 3.2, 4.0, 4.1
- Dropped support for Python 3.6.
- Fixed DatabaseLocked errors when running management commands with
multiple workers.

View File

@ -8,7 +8,7 @@ def read(fname):
setup(
name='xapian-haystack',
version='3.0.1',
version='3.1.0',
description='A Xapian backend for Haystack',
long_description=read('README.rst'),
long_description_content_type='text/x-rst',
@ -26,7 +26,7 @@ setup(
license='GPL2',
py_modules=['xapian_backend'],
install_requires=[
'django>=2.2',
'django>=3.2',
'django-haystack>=2.8.0',
'filelock>=3.4',
]