HsOpenSSL 0.11.3 → 0.11.3.1
raw patch · 3 files changed
+9/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog +7/−0
- HsOpenSSL.cabal +1/−1
- OpenSSL/Session.hsc +1/−1
ChangeLog view
@@ -1,3 +1,10 @@+2016-10-15 Vladimir Shabanov <vshabanoff@gmail.com>++ * HsOpenSSL.cabal (Version): Bump version to 0.11.3.1++ * OpenSSL/Session.hsc: Detect failure of SSL_CTX_new,+ by Eric Mertens @glguy (#13)+ 2016-10-14 Vladimir Shabanov <vshabanoff@gmail.com> * HsOpenSSL.cabal (Version): Bump version to 0.11.3
HsOpenSSL.cabal view
@@ -12,7 +12,7 @@ <http://hackage.haskell.org/package/tls>, which is a pure Haskell implementation of SSL. .-Version: 0.11.3+Version: 0.11.3.1 License: PublicDomain License-File: COPYING Author: Adam Langley, Mikhail Vorozhtsov, PHO, Taru Karttunen
OpenSSL/Session.hsc view
@@ -141,7 +141,7 @@ -- | Create a new SSL context. context :: IO SSLContext context = mask_ $ do- ctx <- _ssl_method >>= _ssl_ctx_new+ ctx <- _ssl_method >>= _ssl_ctx_new >>= failIfNull cbRef <- newIORef Nothing mvar <- newMVar ctx #if MIN_VERSION_base(4,6,0)