Skip to content
This repository has been archived by the owner on May 9, 2024. It is now read-only.

Commit

Permalink
Merge pull request #7 from advisory/feature/release0.20.1
Browse files Browse the repository at this point in the history
Change release number
  • Loading branch information
philfriesen committed Apr 7, 2016
2 parents c0077d4 + ce71e09 commit 00c607b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,15 @@ Changes
0.20.0 (2015-02-12)
-------------------
- Initial version based on djangosaml2 supporting multi-tenant

0.20.1 (2016-04-06)
- Make djangosaml2 tenant support reading metadata from database by adding the following to settings.py:
SAML_CONFIG.update({
# Specifying 'inline': 'DB' means SAML metadata comes from the DB via the following method:
# tenant/models/Member.get_saml_metadata(self)
# Implement this method to retrieve the metadata from the table of your choice.
'metadata': {
'inline': 'DB',
},
...
})
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def read(*rnames):

setup(
name='djangosaml2_tenant',
version='0.20.0',
version='0.20.1',
description='pysaml2 integration for multi-tenant in Django',
long_description='\n\n'.join([read('README'), read('CHANGES')]),
classifiers=[
Expand Down

0 comments on commit 00c607b

Please sign in to comment.