From 69ed5ee2a2c061281e446d99c9a355df8c164a16 Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Fri, 6 May 2016 09:12:36 +0100 Subject: [PATCH] v0.9.0 --- HISTORY.rst | 7 +++++++ requests_kerberos/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index dba1cf5..5b32c58 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,13 @@ History ======= +0.9.0: 2016-05-06 +----------------- + +- Support for principal, hostname, and realm override. + +- Added support for mutual auth. + 0.8.0: 2016-01-07 ----------------- diff --git a/requests_kerberos/__init__.py b/requests_kerberos/__init__.py index 25be2a2..0743a3f 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.8.0' +__version__ = '0.9.0'