Skip to content

Commit 1cfeb98

Browse files
committed
Release version 0.18.0
1 parent d0e4abe commit 1cfeb98

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

CHANGES

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
Changes
22
=======
3+
0.18.0 (2020-02-14)
4+
----------
5+
- Django 3.0 support. Thanks to OskarPersson
6+
- forceauthn and allowcreate support. Thanks to peppelinux
7+
- Dropped support for Python 3.4
8+
- Also thanks to WebSpider, mhindery, DylannCordel, habi3000 for various fixes and improvements
9+
10+
Thanks to plumdog
311

412
0.17.2 (2018-08-29)
513
----------

setup.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ def read(*rnames):
3131

3232
setup(
3333
name='djangosaml2',
34-
version='0.17.2',
34+
version='0.18.0',
3535
description='pysaml2 integration for Django',
36-
long_description='\n\n'.join([read('README.rst'), read('CHANGES')]),
36+
long_description=read('README.rst'),
3737
classifiers=[
3838
"Development Status :: 4 - Beta",
3939
"Environment :: Web Environment",
@@ -42,16 +42,20 @@ def read(*rnames):
4242
"Framework :: Django :: 1.9",
4343
"Framework :: Django :: 1.10",
4444
"Framework :: Django :: 1.11",
45+
"Framework :: Django :: 2.0",
46+
"Framework :: Django :: 2.1",
47+
"Framework :: Django :: 2.2",
48+
"Framework :: Django :: 3.0",
4549
"Intended Audience :: Developers",
4650
"License :: OSI Approved :: Apache Software License",
4751
"Operating System :: OS Independent",
4852
"Programming Language :: Python",
4953
"Programming Language :: Python :: 2",
5054
"Programming Language :: Python :: 2.7",
5155
"Programming Language :: Python :: 3",
52-
"Programming Language :: Python :: 3.4",
5356
"Programming Language :: Python :: 3.5",
5457
"Programming Language :: Python :: 3.6",
58+
"Programming Language :: Python :: 3.7",
5559
"Topic :: Internet :: WWW/HTTP",
5660
"Topic :: Internet :: WWW/HTTP :: WSGI",
5761
"Topic :: Security",
@@ -62,7 +66,7 @@ def read(*rnames):
6266
author_email="[email protected]",
6367
maintainer="Jozef Knaperek",
6468
url="https://github.com/knaperek/djangosaml2",
65-
download_url="https://pypi.python.org/pypi/djangosaml2",
69+
download_url="https://pypi.org/project/djangosaml2/",
6670
license='Apache 2.0',
6771
packages=find_packages(exclude=["tests", "tests.*"]),
6872
include_package_data=True,

0 commit comments

Comments
 (0)