diff --git a/Changelog.md b/Changelog.md
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,3 +1,7 @@
+# 1.2.2
+
+* Increased upper bound on case-insensitive. Thanks to Ricky Elrod (@CodeBlock).
+
 # 1.2.1
 
 * Increased upper bounds on dependencies
diff --git a/Example.hs b/Example.hs
deleted file mode 100644
--- a/Example.hs
+++ /dev/null
@@ -1,22 +0,0 @@
-{-# LANGUAGE OverloadedStrings #-}
-{-# LANGUAGE TemplateHaskell #-}
-module Main where
-
-import Control.Applicative
-import qualified Snap.Http.Server.Config as Snap
-import qualified Snap.Snaplet as Snap
-import qualified Snap
-import qualified Snap.CORS as CORS
-import qualified Snap.Util.FileServe as Snap
-
-data App = App
-
-initApp = Snap.makeSnaplet "app" "app" Nothing $ do
-  Snap.addRoutes [ ("/foo", Snap.writeText "Foo")
-                 , ("/", Snap.serveFile "example.html")
-                 ]
-  CORS.wrapCORS
-  return App
-
-main :: IO ()
-main = Snap.serveSnaplet Snap.defaultConfig initApp
diff --git a/snap-cors.cabal b/snap-cors.cabal
--- a/snap-cors.cabal
+++ b/snap-cors.cabal
@@ -1,5 +1,5 @@
 name:                snap-cors
-version:             1.2.1
+version:             1.2.2
 synopsis:            Add CORS headers to Snap applications
 description:
   Add CORS (cross-origin resource sharing) headers to Snap applications. This
@@ -35,7 +35,7 @@
     attoparsec >= 0.10 && <0.12,
     base >= 4.5 && < 5,
     bytestring >= 0.10 && < 0.11,
-    case-insensitive >= 1.0 && <1.2,
+    case-insensitive >= 1.0 && <1.3,
     hashable >= 1.1 && <1.3,
     network >= 2.4 && < 2.5,
     snap >= 0.13 && < 0.14,
@@ -43,12 +43,3 @@
     transformers >= 0.3 && < 0.4,
     unordered-containers >= 0.2 && <0.3
   ghc-options: -Wall
-
-executable example
-  main-is: Example.hs
-  build-depends:
-    base >= 4.5 && < 5,
-    snap-cors,
-    snap >= 0.13 && < 0.14,
-    snap-server >= 0.9,
-    snap-core >= 0.9
