scotty 0.11.2 → 0.11.3
raw patch · 4 files changed
+10/−14 lines, 4 filesdep −hpc-coverallsdep ~network
Dependencies removed: hpc-coveralls
Dependency ranges changed: network
Files
- README.md +1/−1
- Web/Scotty.hs +1/−1
- changelog.md +4/−0
- scotty.cabal +4/−12
README.md view
@@ -1,4 +1,4 @@-# Scotty [](https://travis-ci.org/scotty-web/scotty)[](https://coveralls.io/r/scotty-web/scotty?branch=master)+# Scotty [](https://travis-ci.org/scotty-web/scotty) A Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp.
Web/Scotty.hs view
@@ -114,7 +114,7 @@ -- | Abort execution of this action. Like an exception, any code after 'finish' -- is not executed. ----- As an example only requests to @/foo/special@ will include in the response+-- As an example only requests to @\/foo\/special@ will include in the response -- content the text message. -- -- > get "/foo/:bar" $ do
changelog.md view
@@ -1,3 +1,7 @@+## 0.11.3 [2019.01.08]+* Drop the test suite's dependency on `hpc-coveralls`, which is unmaintained+ and does not build with GHC 8.4 or later.+ ## 0.11.2 [2018.07.02] * Migrate from `Network` to `Network.Socket` to avoid deprecation warnings.
scotty.cabal view
@@ -1,5 +1,5 @@ Name: scotty-Version: 0.11.2+Version: 0.11.3 Synopsis: Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp Homepage: https://github.com/scotty-web/scotty Bug-reports: https://github.com/scotty-web/scotty/issues@@ -49,8 +49,8 @@ , GHC == 7.10.3 , GHC == 8.0.2 , GHC == 8.2.2- , GHC == 8.4.3- , GHC == 8.6.1+ , GHC == 8.4.4+ , GHC == 8.6.3 Extra-source-files: README.md changelog.md@@ -66,11 +66,6 @@ examples/static/jquery.js examples/static/jquery-json.js -flag hpc-coveralls- description: Build hpc-coveralls in the test suite.- default: True- manual: True- Library Exposed-modules: Web.Scotty Web.Scotty.Trans@@ -91,7 +86,7 @@ monad-control >= 1.0.0.3 && < 1.1, mtl >= 2.1.2 && < 2.3, nats >= 0.1 && < 2,- network >= 2.6.0.2 && < 2.8,+ network >= 2.6.0.2 && < 2.9, regex-compat >= 0.95.1 && < 0.96, text >= 0.11.3.1 && < 1.3, transformers >= 0.3.0.0 && < 0.6,@@ -123,9 +118,6 @@ text, wai build-tool-depends: hspec-discover:hspec-discover == 2.*- if flag(hpc-coveralls)- build-depends: hpc-coveralls- build-tool-depends: hpc-coveralls:hpc-coveralls GHC-options: -Wall -threaded -fno-warn-orphans source-repository head