Skip to content

Commit 6686ffe

Browse files
committed
updates for new release
1 parent 94764f0 commit 6686ffe

File tree

12 files changed

+40
-28
lines changed

12 files changed

+40
-28
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
language: python
2-
python: 3.6
2+
python: 3.9
33
install:
44
- pip install tox
55
- pip install coverage
66
script:
77
- tox
88
env:
9-
- TOXENV=py36
9+
- TOXENV=py39
1010
branches:
1111
only:
12-
- stable/3.13.x
12+
- stable/3.14.x

README.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ The FileBrowser is an extension to the `Django <http://www.djangoproject.com>`_
1717
Requirements
1818
------------
1919

20-
FileBrowser 3.13.3 requires
20+
FileBrowser 3.14.1 requires
2121

22-
* Django 3.1 (http://www.djangoproject.com)
23-
* Grappelli 2.14 (https://github.com/sehmaschine/django-grappelli)
22+
* Django 3.2 (http://www.djangoproject.com)
23+
* Grappelli 2.15 (https://github.com/sehmaschine/django-grappelli)
2424
* Pillow (https://github.com/python-imaging/Pillow)
2525

2626
Documentation
@@ -36,15 +36,17 @@ https://www.transifex.com/projects/p/django-filebrowser/
3636
Releases
3737
--------
3838

39+
* FileBrowser 3.14.1 (April 22nd, 2021): Compatible with Django 3.2 (LTS)
3940
* FileBrowser 3.13.3 (April 22nd, 2021): Compatible with Django 3.1
4041
* FileBrowser 3.12.1 (November 14th, 2019): Compatible with Django 2.2 (LTS)
4142
* FileBrowser 3.9.2 (November 2nd, 2018): Compatible with Django 1.11 (LTS)
4243

4344
Current development branches:
4445

46+
* FileBrowser 3.14.2 (Development Version for Django 3.1, see Branch Stable/3.14.x)
4547
* FileBrowser 3.13.4 (Development Version for Django 3.1, see Branch Stable/3.13.x)
4648
* FileBrowser 3.12.2 (Development Version for Django 2.2, see Branch Stable/3.12.x)
4749
* FileBrowser 3.9.3 (Development Version for Django 1.11, see Branch Stable/3.9.x)
4850

4951
Older versions are available at GitHub, but are not supported anymore.
50-
Support for 3.12.x and 3.9.x is limited to security issues and very important bugfixes.
52+
Support for 3.13.x and 3.9.x is limited to security issues and very important bugfixes.

docs/changelog.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,14 @@
88
Changelog
99
=========
1010

11-
3.13.4 (not yet released)
11+
3.14.2 (not yet released)
1212
-------------------------
1313

14+
3.14.1 (April 22nd 2021)
15+
------------------------
16+
17+
* Compatibility with Django 3.2 and Grappelli 2.15
18+
1419
3.13.3 (April 22nd 2021)
1520
------------------------
1621

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = '3.13.3'
54+
version = '3.14.1'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '3.13.3'
56+
release = '3.14.1'
5757

5858
# The language for content autogenerated by Sphinx. Refer to documentation
5959
# for a list of supported languages.

docs/index.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Django FileBrowser Documentation
1111
**Media-Management with Grappelli**.
1212

1313
.. note::
14-
|filebrowser| 3.13.3 requires Django 3.1 and |grappelli| 2.14.
14+
|filebrowser| 3.14.1 requires Django 3.2 and |grappelli| 2.15.
1515

1616
Installation and Setup
1717
----------------------
@@ -92,15 +92,17 @@ Versions and Compatibility
9292

9393
**FileBrowser is always developed against the latest stable Django release and is NOT tested with Djangos trunk.**
9494

95+
* FileBrowser 3.14.1 (April 22nd, 2021): Compatible with Django 3.2 (LTS)
9596
* FileBrowser 3.13.3 (April 22nd, 2021): Compatible with Django 3.1
9697
* FileBrowser 3.12.1 (November 14th, 2019): Compatible with Django 2.2 (LTS)
9798
* FileBrowser 3.9.2 (November 2nd, 2018): Compatible with Django 1.11 (LTS)
9899

99100
Current development branches:
100101

102+
* FileBrowser 3.14.2 (Development Version for Django 3.1, see Branch Stable/3.14.x)
101103
* FileBrowser 3.13.4 (Development Version for Django 3.1, see Branch Stable/3.13.x)
102104
* FileBrowser 3.12.2 (Development Version for Django 2.2, see Branch Stable/3.12.x)
103105
* FileBrowser 3.9.3 (Development Version for Django 1.11, see Branch Stable/3.9.x)
104106

105107
Older versions are available at GitHub, but are not supported anymore.
106-
Support for 3.12.x and 3.9.x is limited to security issues and very important bugfixes.
108+
Support for 3.13.x and 3.9.x is limited to security issues and very important bugfixes.

docs/quickstart.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ For using the |filebrowser|, `Django <http://www.djangoproject.com>`_ needs to b
1111
Requirements
1212
------------
1313

14-
* Django 3.1, http://www.djangoproject.com
15-
* Grappelli 2.14, https://github.com/sehmaschine/django-grappelli
14+
* Django 3.2, http://www.djangoproject.com
15+
* Grappelli 2.15, https://github.com/sehmaschine/django-grappelli
1616
* Pillow, https://github.com/python-imaging/Pillow
1717

1818
Installation

docs/releasenotes.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
55

66
.. _releasenotes:
77

8-
FileBrowser 3.13 Release Notes
8+
FileBrowser 3.14 Release Notes
99
==============================
1010

11-
FileBrowser 3.13 is compatible with Django 3.0 as well as Grappelli 2.14.
11+
FileBrowser 3.14 is compatible with Django 3.2 as well as Grappelli 2.15.
1212

1313
Updates
1414
-------
1515

16-
* Compatibility with Django 3.0 and Grappelli 2.14
16+
* Compatibility with Django 3.2 and Grappelli 2.15
1717

18-
Update from FileBrowser 3.12.x
18+
Update from FileBrowser 3.13.x
1919
------------------------------
2020

21-
* Update Django to 3.0 and check https://docs.djangoproject.com/en/3.0/releases/3.0/
22-
* Update Grappelli to 2.14.x
23-
* Update FileBrowser to 3.13.x
21+
* Update Django to 3.2 and check https://docs.djangoproject.com/en/3.2/releases/3.2/
22+
* Update Grappelli to 2.15.x
23+
* Update FileBrowser to 3.14.x

filebrowser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '3.13.3'
1+
VERSION = '3.14.1'

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
django-grappelli>=2.14,<2.15
1+
django-grappelli>=2.15,<2.16
22
pillow
33
six

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def read(fname):
99

1010
setup(
1111
name='django-filebrowser',
12-
version='3.13.3',
12+
version='3.14.1',
1313
description='Media-Management with Grappelli',
1414
long_description=read('README.rst'),
1515
url='http://django-filebrowser.readthedocs.org',
@@ -32,10 +32,13 @@ def read(fname):
3232
'Programming Language :: Python :: 3.4',
3333
'Programming Language :: Python :: 3.5',
3434
'Programming Language :: Python :: 3.6',
35+
'Programming Language :: Python :: 3.7',
36+
'Programming Language :: Python :: 3.8',
37+
'Programming Language :: Python :: 3.9',
3538
],
3639
zip_safe=False,
3740
install_requires=[
38-
'django-grappelli>=2.14,<2.15',
41+
'django-grappelli>=2.15,<2.16',
3942
'pillow',
4043
'six',
4144
],

0 commit comments

Comments
 (0)