Skip to content

Commit

Permalink
Prepare 3.1.0 release (confirmed Django 4.1 support)
Browse files Browse the repository at this point in the history
  • Loading branch information
claudep committed Mar 19, 2023
1 parent 90593c0 commit c2c7d16
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/test.yml
Expand Up @@ -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 }}
Expand Down
6 changes: 4 additions & 2 deletions CHANGELOG.rst
Expand Up @@ -2,10 +2,12 @@
xapian-haystack Changelog
=========================

Unreleased
----------
v3.1.0 (Unreleased)
-------------------

- 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.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -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',
Expand All @@ -26,7 +26,7 @@ def read(fname):
license='GPL2',
py_modules=['xapian_backend'],
install_requires=[
'django>=2.2',
'django>=3.2',
'django-haystack>=2.8.0',
'filelock>=3.4',
]
Expand Down

0 comments on commit c2c7d16

Please sign in to comment.