From 8718174cac25e3ccc960e53021ff39b0fa44d143 Mon Sep 17 00:00:00 2001 From: Robbie Harwood Date: Fri, 7 Aug 2020 12:23:12 -0400 Subject: [PATCH] Release version 1.2.2 Signed-off-by: Robbie Harwood --- HISTORY.rst | 7 +++++++ requests_gssapi/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 8970fdd..409d714 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,13 @@ History ======= +1.2.2: 2020-08-07 +----------------- + +- Use USER_NAME instead of HOSTBASED_SERVICE for user principals +- Remove unused imports in example code +- Fix typo in explicit mech example + 1.2.1: 2020-03-31 ----------------- diff --git a/requests_gssapi/__init__.py b/requests_gssapi/__init__.py index e718129..fcc3465 100644 --- a/requests_gssapi/__init__.py +++ b/requests_gssapi/__init__.py @@ -22,4 +22,4 @@ __all__ = ('HTTPSPNEGOAuth', 'HTTPKerberosAuth', 'MutualAuthenticationError', 'REQUIRED', 'OPTIONAL', 'DISABLED') -__version__ = '1.2.1' +__version__ = '1.2.2'