Skip to content

Commit

Permalink
drop django 1.11.x support, update version, add django 4.1.x support
Browse files Browse the repository at this point in the history
  • Loading branch information
ashtonpaul committed Sep 2, 2022
1 parent 59cf89c commit e1d2324
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Expand Up @@ -5,14 +5,13 @@ python:
- 3.7
- 3.8
env:
- DJANGO_VERSION=1.11.29
- DJANGO_VERSION=2.1.15
- DJANGO_VERSION=2.2.12
- DJANGO_VERSION=3.2.15
- DJANGO_VERSION=4.1.1
# https://docs.djangoproject.com/en/stable/faq/install/#what-python-version-can-i-use-with-django
matrix:
exclude:
- env: DJANGO_VERSION=1.11.29
python: 3.8
- env: DJANGO_VERSION=2.1.15
python: 2.7
- env: DJANGO_VERSION=2.1.15
Expand Down
8 changes: 6 additions & 2 deletions CHANGELOG.md
@@ -1,7 +1,11 @@
# Changelog

## 4.0.1 (31.08.2022)
- make lazy text Django 4.0 compatible
## 5.0.0 (02.09.2022)
### Added
- Support of Django 4.1

### Removed
- Support of Django 1.11.x

## 4.0.0 (23.05.2020)
### Added
Expand Down
2 changes: 1 addition & 1 deletion constrainedfilefield/__init__.py
Expand Up @@ -3,7 +3,7 @@

__license__ = "BSD-3-Clause"
__author__ = "Marc Bourqui"
__version__ = "4.0.1"
__version__ = "5.0.0"
__version_info__ = tuple(
[
int(num) if num.isdigit() else num
Expand Down
4 changes: 2 additions & 2 deletions constrainedfilefield/tests/urls.py
@@ -1,7 +1,7 @@
# -*- coding:utf-8 -*-
from django.conf.urls import url
from django.urls import re_path
from constrainedfilefield.tests import views

urlpatterns = [
url(r"^nomodel/$", views.nomodel_form, name="nomodel"),
re_path(r"^nomodel/$", views.nomodel_form, name="nomodel"),
]

0 comments on commit e1d2324

Please sign in to comment.