acid-state 0.10.1 → 0.11.0
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
- Data.Acid.Remote: skipAuthenticationPerform :: CommChannel -> IO Bool
+ Data.Acid.Remote: skipAuthenticationPerform :: CommChannel -> IO ()
Files
- acid-state.cabal +1/−1
- src/Data/Acid/Remote.hs +2/−2
acid-state.cabal view
@@ -1,5 +1,5 @@ Name: acid-state-Version: 0.10.1+Version: 0.11.0 Synopsis: Add ACID guarantees to any serializable Haskell data structure. Description: Use regular Haskell data structures as your database and get stronger ACID guarantees than most RDBMS offer. Homepage: http://acid-state.seize.it/
src/Data/Acid/Remote.hs view
@@ -172,8 +172,8 @@ skipAuthenticationCheck _ = return True {- | skip client-side authentication entirely. -}-skipAuthenticationPerform :: CommChannel -> IO Bool-skipAuthenticationPerform _ = return True+skipAuthenticationPerform :: CommChannel -> IO ()+skipAuthenticationPerform _ = return () {- | check that the client knows a shared secret.