From c7bb1ef26fae5a999ab7e852998b627885bf4818 Mon Sep 17 00:00:00 2001 From: Chad Killingsworth Date: Thu, 17 Dec 2015 07:02:19 -0600 Subject: [PATCH] Update readme with version requirements. Increment version for release. --- README.md | 3 +++ setup.py | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 55951ef..5a9f020 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,9 @@ A Django custom authentication backend for [Sentry](https://github.com/getsentry * Users created by this backend are managed users. Managed fields are not editable through the Sentry account page. * Users may be auto-added to an Organization upon creation. +## Prerequisites +Versions 2.0 and newer require Sentry 8. For Sentry 7 support, use [the 1.1 release](https://github.com/Banno/getsentry-ldap-auth/releases/tag/1.1) + ## Configuration This module extends the [django-auth-ldap](https://pythonhosted.org/django-auth-ldap/) and all the options it provides are supported. diff --git a/setup.py b/setup.py index 1ee1ece..3418cdc 100755 --- a/setup.py +++ b/setup.py @@ -10,12 +10,12 @@ install_requires = [ 'django-auth-ldap>=1.2.5', - 'sentry>=7.4.0', + 'sentry>=8.0.0', ] setup( name='sentry-ldap-auth', - version='1.1', + version='2.0', author='Chad Killingsworth - Jack Henry and Associates, Inc.', author_email='chad.killingsworth@banno.com', url='http://github.com/banno/getsentry-ldap-auth',