diff --git a/HISTORY.rst b/HISTORY.rst index 32df083..f54a51e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,17 @@ History ======= +0.7.0: 2015-05-04 +----------------- + +- Added Windows native authentication support by adding kerberos-sspi as an + alternative backend. + +- Prevent infinite recursion when a server returns 401 to an authorization + attempt. + +- Reduce the logging during successful responses. + 0.6.1: 2014-11-14 ----------------- diff --git a/requests_kerberos/__init__.py b/requests_kerberos/__init__.py index c444688..48e43a9 100644 --- a/requests_kerberos/__init__.py +++ b/requests_kerberos/__init__.py @@ -22,4 +22,4 @@ logging.getLogger(__name__).addHandler(NullHandler()) __all__ = ('HTTPKerberosAuth', 'MutualAuthenticationError', 'REQUIRED', 'OPTIONAL', 'DISABLED') -__version__ = '0.6.1' +__version__ = '0.7.0'