diff --git a/README.markdown b/README.markdown
--- a/README.markdown
+++ b/README.markdown
@@ -51,7 +51,7 @@
 
 ``` sh
 > rattletrap --help
-rattletrap.EXE version 6.4.0
+rattletrap.EXE version 7.0.0
   -c           --compact         minify JSON output
   -f           --fast            only encode or decode the header
   -h           --help            show the help
@@ -92,10 +92,6 @@
 `-c`) to Rattletrap. Even when the JSON is minified, it's extremely large. The
 output can be up to 100 times larger than the input. For example, a 1.5 MB
 replay turns into 31 MB of minified JSON or 159 MB of pretty-printed JSON.
-
-Be aware that Rattletrap can output some very large numbers! Some languages,
-like JavaScript, don't natively support parsing them from JSON. See issue #117
-for details.
 
 ## Generate
 
diff --git a/library/Rattletrap/Decode/Content.hs b/library/Rattletrap/Decode/Content.hs
--- a/library/Rattletrap/Decode/Content.hs
+++ b/library/Rattletrap/Decode/Content.hs
@@ -53,7 +53,7 @@
       (decodeFramesBits version numFrames maxChannels classAttributeMap)
       mempty
   frames <- either fail pure (runDecodeBits bitGet (reverseBytes stream))
-  unknown <- decodeWhen (version >= (868, 24, 10)) decodeWord32le
+  unknown <- decodeWhen (version >= (868, 23, 9)) decodeWord32le
   pure
     (Content
       levels
diff --git a/rattletrap.cabal b/rattletrap.cabal
--- a/rattletrap.cabal
+++ b/rattletrap.cabal
@@ -1,7 +1,7 @@
 cabal-version: 2.2
 
 name: rattletrap
-version: 7.0.1
+version: 7.0.2
 
 category: Game
 description: Rattletrap parses and generates Rocket League replays.
@@ -23,16 +23,16 @@
   build-depends:
     aeson ^>= 1.4.2,
     aeson-pretty ^>= 0.8.7,
-    base >= 4.11.1 && < 4.13,
+    base ^>= 4.11.1 || ^>= 4.12.0,
     binary ^>= 0.8.6,
     binary-bits ^>= 0.5,
     bytestring ^>= 0.10.8,
     containers ^>= 0.6.0,
     filepath ^>= 1.4.2,
-    http-client ^>= 0.5.14,
+    http-client ^>= 0.6.4,
     http-client-tls ^>= 0.3.5,
     scientific ^>= 0.3.6,
-    template-haskell >= 2.13.0 && < 2.15,
+    template-haskell ^>= 2.13.0 || ^>= 2.14.0,
     text ^>= 1.2.3,
     transformers ^>= 0.5.6,
   default-language: Haskell2010
diff --git a/stack.yaml b/stack.yaml
--- a/stack.yaml
+++ b/stack.yaml
@@ -1,1 +1,1 @@
-resolver: lts-13.20
+resolver: nightly-2019-05-27
diff --git a/tests/Main.hs b/tests/Main.hs
--- a/tests/Main.hs
+++ b/tests/Main.hs
@@ -117,6 +117,7 @@
   , ("2cfe", "a new playstation id")
   , ("3381", "patch 1.37")
   , ("372d", "a camera yaw attribute")
+  , ("383e", "older unknown content field")
   , ("387f", "a frozen attribute")
   , ("3abd", "rlcs")
   , ("3ea1", "a custom team name")
