diff --git a/README.markdown b/README.markdown
--- a/README.markdown
+++ b/README.markdown
@@ -14,25 +14,23 @@
 released on 2021-08-10. If a replay can be played by the Rocket League client,
 it can be parsed by Rattletrap. (If not, that's a bug. Please report it!)
 
+## Install
+
 Rattletrap is a command-line application. You should only use it if you're
 comfortable running things in terminals or command prompts. Otherwise consider
 using another tool like [Ball Chasing][].
 
-Rattletrap is written in [Haskell][]. If you'd like to use a program written in
-a different language, consider one of the following:
+The best way to get Rattletrap is by downloading [the latest release][] for
+your platform. Rattletrap is also available as [a Docker image][docker].
 
+Rattletrap is written in [Haskell][]. To build Rattletrap from source, install
+[Stack][]. Then run `stack --resolver nightly-2021-08-14 install rattletrap`.
+If you'd like to use a program written in a different language, consider one of
+the following:
+
 - <https://github.com/jjbott/RocketLeagueReplayParser> (C#)
 - <https://github.com/nickbabcock/rrrocket> (Rust)
 - <https://github.com/Bakkes/CPPRP> (C++)
-
-## Install
-
-Get Rattletrap by downloading [the latest release][] for your platform.
-
-Rattletrap is also available as [a Docker image][docker].
-
-To build Rattletrap from source, install [Stack][]. Then run
-`stack --resolver nightly-2021-05-01 install rattletrap`.
 
 ## Replays
 
diff --git a/rattletrap.cabal b/rattletrap.cabal
--- a/rattletrap.cabal
+++ b/rattletrap.cabal
@@ -1,7 +1,7 @@
 cabal-version: 2.0
 
 name: rattletrap
-version: 11.2.0
+version: 11.2.1
 synopsis: Parse and generate Rocket League replays.
 description: Rattletrap parses and generates Rocket League replays.
 
@@ -19,14 +19,14 @@
 library
   autogen-modules: Paths_rattletrap
   build-depends:
-    base >= 4.14.1 && < 4.15
-    , aeson >= 1.5.5 && < 1.6
+    base >= 4.15.0 && < 4.16
+    , aeson >= 1.5.6 && < 1.6
     , aeson-pretty >= 0.8.8 && < 0.9
     , array >= 0.5.4 && < 0.6
-    , bytestring >= 0.10.12 && < 0.11
-    , containers >= 0.6.2 && < 0.7
+    , bytestring >= 0.10.12 && < 0.12
+    , containers >= 0.6.4 && < 0.7
     , filepath >= 1.4.2 && < 1.5
-    , http-client >= 0.6.4 && < 0.8
+    , http-client >= 0.7.8 && < 0.8
     , http-client-tls >= 0.3.5 && < 0.4
     , text >= 1.2.4 && < 1.3
   default-extensions: NamedFieldPuns
@@ -193,7 +193,7 @@
     base
     , bytestring
     , filepath
-    , HUnit >= 1.6.1 && < 1.7
+    , HUnit >= 1.6.2 && < 1.7
     , rattletrap
   default-language: Haskell2010
   ghc-options: -rtsopts -threaded
