Skip to content

Commit

Permalink
Update for 0.8.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lqez committed Oct 14, 2021
1 parent a60af41 commit 11d22ab
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ djs_playground/static
.envrc
.tool-versions
.direnv

.DS_Store
8 changes: 6 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
0.8.13.0 (WIP)
0.8.19.0
--------
- Bump Summernote to 0.8.13
- #405: Set X-Frame-Options setting on a per-view basis (@czlee)
- #396: HTML escaping (@campfireman)

- Bump Summernote to 0.8.19
- Drop support for Python 2
- Drop support for outdated Django versions

0.8.11.6
--------
Expand Down
2 changes: 1 addition & 1 deletion django_summernote/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version_info = (0, 8, 11, 6)
version_info = (0, 8, 19, 0)

__version__ = version = '.'.join(map(str, version_info))
__project__ = PROJECT = 'django-summernote'
Expand Down
15 changes: 2 additions & 13 deletions django_summernote/test_django_summernote.py
Original file line number Diff line number Diff line change
@@ -1,29 +1,18 @@
import json
import os
import sys
from unittest.mock import patch
from importlib import reload

from django.apps import apps
from django.contrib.admin.sites import AdminSite
from django.contrib.auth.models import User
from django.db import models
from django.test import Client, TestCase, override_settings
from django.urls import reverse

from django_summernote.utils import (get_attachment_model,
get_attachment_storage)

try:
# Django >= 2.0
from django.urls import reverse
except ImportError:
from django.core.urlresolvers import reverse


if sys.version_info >= (3, 4):
from importlib import reload
else:
from imp import reload


IMAGE_FILE = 'django_summernote/static/summernote/summernote.png'

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
Expand Down

0 comments on commit 11d22ab

Please sign in to comment.