Skip to content

Commit c2f3498

Browse files
authored
Merge pull request #27 from jmichalicek/version-bump-2.1
Bump version: 2.0.0 → 2.1.0
2 parents eed565f + b48f3c4 commit c2f3498

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

HISTORY.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@
22
33
History
44
-------
5+
2.1
6+
+++++++
7+
* Added `allow-same-source-origin` to iframe sandbox so that things like `@font-face` can function on localhost
8+
* Added testing on Django 4.1 and Python 3.11
9+
* Stopped testing on old versions of Python and Django which had already been dropped from setup.py
10+
* Some type hinting fixes
511

6-
Current
12+
2.0
713
+++++++
814
* Dropped Python 3.5 and 2.7 support
915
* Testing against Django 2.2 to 3.1

django_mail_viewer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.0.0'
1+
__version__ = '2.1.0'

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.0.0
2+
current_version = 2.1.0
33
commit = True
44
tag = True
55

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from setuptools import find_packages, setup
66

7-
version = '2.0.0'
7+
version = '2.1.0'
88

99
if sys.argv[-1] == 'publish':
1010
try:
@@ -43,11 +43,9 @@
4343
classifiers=[
4444
'Development Status :: 4 - Beta',
4545
'Framework :: Django',
46-
'Framework :: Django :: 2.2',
47-
'Framework :: Django :: 3.0',
48-
'Framework :: Django :: 3.1',
4946
'Framework :: Django :: 3.2',
5047
'Framework :: Django :: 4.0',
48+
'Framework :: Django :: 4.1',
5149
'Intended Audience :: Developers',
5250
'License :: OSI Approved :: MIT License',
5351
'Natural Language :: English',
@@ -56,5 +54,6 @@
5654
'Programming Language :: Python :: 3.8',
5755
'Programming Language :: Python :: 3.9',
5856
'Programming Language :: Python :: 3.10',
57+
'Programming Language :: Python :: 3.11',
5958
],
6059
)

0 commit comments

Comments
 (0)