diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # CHANGELOG
 
+### 1.0.1.3
+
+- Bump various bounds.
+
 ### 1.0.1.1
 
 - Bump `servant` upper bound.
diff --git a/servant-xml.cabal b/servant-xml.cabal
--- a/servant-xml.cabal
+++ b/servant-xml.cabal
@@ -1,11 +1,13 @@
--- This file has been generated from package.yaml by hpack version 0.20.0.
+cabal-version: 1.12
+
+-- This file has been generated from package.yaml by hpack version 0.31.1.
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 1b0e656fb48b77ee5efe43fd68ca20a33753ec1b166d3559eb126af881f5e549
+-- hash: 97a99fcae4e059f0d0b5445a0b82c87d8b97f3ec7cf3671a78a14196ee774638
 
 name:           servant-xml
-version:        1.0.1.2
+version:        1.0.1.3
 synopsis:       Servant support for the XML Content-Type
 description:    Servant support for the Content-Type of /application\/xml/. Anything with 'ToXml' and 'FromXml' instances can be automatically marshalled.
 category:       Web
@@ -16,21 +18,19 @@
 license:        BSD3
 license-file:   LICENSE
 build-type:     Simple
-cabal-version:  >= 1.10
-
 extra-source-files:
-    CHANGELOG.md
     README.md
+    CHANGELOG.md
 
 library
   hs-source-dirs:
       src
-  ghc-options: -fwarn-unused-imports -fwarn-unused-binds -fwarn-name-shadowing -fwarn-unused-matches -fwarn-incomplete-patterns -fwarn-incomplete-uni-patterns
+  ghc-options: -Wall -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -Widentities
   build-depends:
       base >=4.7 && <5
     , bytestring
-    , http-media >=0.7 && <0.8
-    , servant >=0.11 && <0.14
+    , http-media >=0.7
+    , servant >=0.11
     , xmlbf >=0.4
     , xmlbf-xeno >=0.1
   exposed-modules:
diff --git a/src/Servant/XML.hs b/src/Servant/XML.hs
--- a/src/Servant/XML.hs
+++ b/src/Servant/XML.hs
@@ -13,7 +13,7 @@
 -- and successfully returned by Servant endpoints.
 -- Types with a `FromXml` instance can be decoded from request bodies.
 --
--- In implementing these typeclass instances, you can use the primatives
+-- In implementing these typeclass instances, you can use the primitives
 -- found in the /xmlbf/ library.
 
 module Servant.XML where
