Skip to content

Commit b52fb1a

Browse files
committed
Release 0.10.1
* Added supporting Django v3.1 (#111)
1 parent ea2d7f3 commit b52fb1a

File tree

6 files changed

+30
-7
lines changed

6 files changed

+30
-7
lines changed

.travis.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@ env:
5858
- DJANGO_VERSION="<3.1" MJML_VERSION=4.5.1
5959
- DJANGO_VERSION="<3.1" MJML_VERSION=4.6.3
6060

61+
- DJANGO_VERSION="<3.2" MJML_VERSION=3.3.5
62+
- DJANGO_VERSION="<3.2" MJML_VERSION=4.3.1
63+
- DJANGO_VERSION="<3.2" MJML_VERSION=4.4.0
64+
- DJANGO_VERSION="<3.2" MJML_VERSION=4.5.1
65+
- DJANGO_VERSION="<3.2" MJML_VERSION=4.6.3
66+
6167
matrix:
6268
exclude:
6369
- { python: "2.7", env: DJANGO_VERSION="<2.1" MJML_VERSION=3.3.5 }
@@ -90,6 +96,18 @@ matrix:
9096
- { python: "3.5", env: DJANGO_VERSION="<3.1" MJML_VERSION=4.5.1 }
9197
- { python: "3.5", env: DJANGO_VERSION="<3.1" MJML_VERSION=4.6.3 }
9298

99+
- { python: "2.7", env: DJANGO_VERSION="<3.2" MJML_VERSION=3.3.5 }
100+
- { python: "2.7", env: DJANGO_VERSION="<3.2" MJML_VERSION=4.3.1 }
101+
- { python: "2.7", env: DJANGO_VERSION="<3.2" MJML_VERSION=4.4.0 }
102+
- { python: "2.7", env: DJANGO_VERSION="<3.2" MJML_VERSION=4.5.1 }
103+
- { python: "2.7", env: DJANGO_VERSION="<3.2" MJML_VERSION=4.6.3 }
104+
105+
- { python: "3.5", env: DJANGO_VERSION="<3.2" MJML_VERSION=3.3.5 }
106+
- { python: "3.5", env: DJANGO_VERSION="<3.2" MJML_VERSION=4.3.1 }
107+
- { python: "3.5", env: DJANGO_VERSION="<3.2" MJML_VERSION=4.4.0 }
108+
- { python: "3.5", env: DJANGO_VERSION="<3.2" MJML_VERSION=4.5.1 }
109+
- { python: "3.5", env: DJANGO_VERSION="<3.2" MJML_VERSION=4.6.3 }
110+
93111
- { python: "3.6", env: DJANGO_VERSION="<1.9" MJML_VERSION=3.3.5 }
94112
- { python: "3.6", env: DJANGO_VERSION="<1.9" MJML_VERSION=4.3.1 }
95113
- { python: "3.6", env: DJANGO_VERSION="<1.9" MJML_VERSION=4.4.0 }

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.10.1 (2020-08-16)
2+
===================
3+
* Added supporting Django v3.1
4+
5+
16
0.10.0 (2020-06-29)
27
===================
38
* Added `requests` in extras require in `setup.py`

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Installation
2525
Requirements:
2626
^^^^^^^^^^^^^
2727

28-
* Django from 1.8 to 3.0
28+
* Django from 1.8 to 3.1
2929
* requests from 2.20.0 (only if you are going to use API HTTP-server for rendering)
3030
* mjml from 2.3 to 4.6.3
3131

mjml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '0.10.0'
1+
__version__ = '0.10.1'
22

33
default_app_config = 'mjml.apps.MJMLConfig'

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
wheel==0.34.2
1+
wheel==0.35.1
22
twine==1.15.0; python_version < "3"
33
twine==3.2.0; python_version >= "3"
4-
coverage==5.1
4+
coverage==5.2.1
55
django<1.12; python_version < "3"
6-
django>=1.8,<3.1; python_version >= "3"
6+
django>=1.8,<3.2; python_version >= "3"
77
six==1.15.0; python_version < "3"
88
ndg-httpsclient>=0.5.1; python_version < "3"
9-
mock<3.1; python_version < "3"
9+
mock<4.1; python_version < "3"
1010
requests>=2.19.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
zip_safe=False, # because include static
1818
platforms=['OS Independent'],
1919
install_requires=[
20-
'django >=1.8,<3.1',
20+
'django >=1.8,<3.2',
2121
],
2222
extras_require={
2323
'requests': [

0 commit comments

Comments
 (0)