diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,7 +2,13 @@
 
 ## HEAD
 
+## 0.6.2.1
+
+- Match Content-Type case-insensitively.
+
 ## 0.6.2
+
+- Add the monad transformer `ScraperT`.
 
 ## 0.6.1
 
diff --git a/scalpel.cabal b/scalpel.cabal
--- a/scalpel.cabal
+++ b/scalpel.cabal
@@ -1,5 +1,5 @@
 name:                scalpel
-version:             0.6.2
+version:             0.6.2.1
 synopsis:            A high level web scraping library for Haskell.
 description:
     Scalpel is a web scraping library inspired by libraries like Parsec and
@@ -24,7 +24,7 @@
 source-repository this
   type:     git
   location: https://github.com/fimad/scalpel.git
-  tag:      v0.6.2
+  tag:      v0.6.2.1
 
 library
   other-extensions:
@@ -38,7 +38,7 @@
   default-language: Haskell2010
   build-depends:
           base            >= 4.6 && < 5
-      ,   scalpel-core    == 0.6.2
+      ,   scalpel-core    == 0.6.2.1
       ,   bytestring
       ,   case-insensitive
       ,   data-default
diff --git a/src/Text/HTML/Scalpel/Internal/Scrape/URL.hs b/src/Text/HTML/Scalpel/Internal/Scrape/URL.hs
--- a/src/Text/HTML/Scalpel/Internal/Scrape/URL.hs
+++ b/src/Text/HTML/Scalpel/Internal/Scrape/URL.hs
@@ -91,7 +91,7 @@
         body        = HTTP.responseBody response
         headers     = HTTP.responseHeaders response
         contentType = listToMaybe
-                    $ map (Text.decodeLatin1 . snd)
+                    $ map (Text.toLower . Text.decodeLatin1 . snd)
                     $ take 1
                     $ dropWhile ((/= "content-type") . fst)
                                 headers
