Skip to content

Commit

Permalink
Merge pull request #27 from jmichalicek/version-bump-2.1
Browse files Browse the repository at this point in the history
Bump version: 2.0.0 → 2.1.0
  • Loading branch information
jmichalicek authored Dec 11, 2022
2 parents eed565f + b48f3c4 commit c2f3498
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
8 changes: 7 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@
History
-------
2.1
+++++++
* Added `allow-same-source-origin` to iframe sandbox so that things like `@font-face` can function on localhost
* Added testing on Django 4.1 and Python 3.11
* Stopped testing on old versions of Python and Django which had already been dropped from setup.py
* Some type hinting fixes

Current
2.0
+++++++
* Dropped Python 3.5 and 2.7 support
* Testing against Django 2.2 to 3.1
Expand Down
2 changes: 1 addition & 1 deletion django_mail_viewer/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.0.0'
__version__ = '2.1.0'
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.0
current_version = 2.1.0
commit = True
tag = True

Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from setuptools import find_packages, setup

version = '2.0.0'
version = '2.1.0'

if sys.argv[-1] == 'publish':
try:
Expand Down Expand Up @@ -43,11 +43,9 @@
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
Expand All @@ -56,5 +54,6 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)

0 comments on commit c2f3498

Please sign in to comment.