diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Scotty [![Build Status](https://travis-ci.org/scotty-web/scotty.svg)](https://travis-ci.org/scotty-web/scotty)[![Coverage Status](https://coveralls.io/repos/scotty-web/scotty/badge.svg?branch=master)](https://coveralls.io/r/scotty-web/scotty?branch=master)
+# Scotty [![Build Status](https://travis-ci.org/scotty-web/scotty.svg)](https://travis-ci.org/scotty-web/scotty)
 
 A Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp.
 
diff --git a/Web/Scotty.hs b/Web/Scotty.hs
--- a/Web/Scotty.hs
+++ b/Web/Scotty.hs
@@ -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
diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -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.
 
diff --git a/scotty.cabal b/scotty.cabal
--- a/scotty.cabal
+++ b/scotty.cabal
@@ -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
