Version bunch

This commit is contained in:
Michael Snoyman 2016-04-22 09:09:45 +03:00
parent f0fac18e48
commit 5dc1cc5911
3 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,7 @@
## 3.0.1
* make host configurable too (fixes #538) [#539](https://github.com/yesodweb/wai/pull/539)
## 3.0.0.5
* Support wai/warp 3.2

View File

@ -190,6 +190,9 @@ runUrl = runUrlPort 4587
runUrlPort :: Int -> String -> Application -> IO ()
runUrlPort = runHostPortUrl "*4"
-- |
--
-- @since 3.0.1
runHostPortUrl :: String -> Int -> String -> Application -> IO ()
runHostPortUrl host port url app = do
x <- newIORef True

View File

@ -1,5 +1,5 @@
Name: wai-handler-launch
Version: 3.0.0.5
Version: 3.0.1
Synopsis: Launch a web app in the default browser.
description: API docs and the README are available at <http://www.stackage.org/package/wai-handler-launch>.
License: MIT