wai-websockets 3.0.0.5 → 3.0.0.6
raw patch · 2 files changed
+5/−5 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- server.lhs +3/−3
- wai-websockets.cabal +2/−2
server.lhs view
@@ -76,9 +76,9 @@ > main = do > putStrLn "http://localhost:9160/client.html" > state <- newMVar newServerState-> Warp.runSettings Warp.defaultSettings-> { Warp.settingsPort = 9160-> } $ WaiWS.websocketsOr WS.defaultConnectionOptions (application state) staticApp+> Warp.runSettings+> (Warp.setPort 9160 Warp.defaultSettings)+> $ WaiWS.websocketsOr WS.defaultConnectionOptions (application state) staticApp > staticApp :: Network.Wai.Application > staticApp = Static.staticApp $ Static.embeddedSettings $(embedDir "static")
wai-websockets.cabal view
@@ -1,6 +1,6 @@ Name: wai-websockets-Version: 3.0.0.5-Synopsis: Provide a bridge betweeen WAI and the websockets package.+Version: 3.0.0.6+Synopsis: Provide a bridge between WAI and the websockets package. License: MIT License-file: LICENSE Author: Michael Snoyman, Jasper Van der Jeugt, Ting-Yen Lai