packages feed

crypton-connection 0.4.2 → 0.4.3

raw patch · 3 files changed

+13/−1 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Network.Connection.Internal: ConnectionContext :: !CertificateStore -> ConnectionContext
+ Network.Connection.Internal: [globalCertificateStore] :: ConnectionContext -> !CertificateStore
+ Network.Connection.Internal: data ConnectionContext

Files

CHANGELOG.md view
@@ -1,5 +1,10 @@ # CHANGELOG +## Version 0.4.3++* Creating the `Internal` module and export the `ConnectionContext` constructor.+  [#7](https://github.com/kazu-yamamoto/crypton-connection/pull/7)+ ## Version 0.4.2  * Using data-default.
+ Network/Connection/Internal.hs view
@@ -0,0 +1,6 @@+module Network.Connection.Internal+    ( ConnectionContext (..)+    )+where++import Network.Connection.Types (ConnectionContext (..))
crypton-connection.cabal view
@@ -1,5 +1,5 @@ Name:                crypton-connection-Version:             0.4.2+Version:             0.4.3 Description:     Simple network library for all your connection needs.     .@@ -36,6 +36,7 @@                    , crypton-x509-system >= 1.5                    , crypton-x509-validation >= 1.5   Exposed-modules:   Network.Connection+                     Network.Connection.Internal   Other-modules:     Network.Connection.Types   ghc-options:       -Wall