diff --git a/README.markdown b/README.markdown
--- a/README.markdown
+++ b/README.markdown
@@ -1,5 +1,8 @@
 # Cheapskate
 
+*Note: This library is unmaintained (by me anyway).  I recommend
+using cmark.*
+
 This is an experimental Markdown processor in pure Haskell.  (A cheapskate is
 always in search of the best markdown.) It aims to process Markdown efficiently
 and in the most forgiving possible way.  It is about seven times faster than
diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,3 +1,9 @@
+cheapskate 0.1.1.1 (05 Nov 2018)
+
+  * Bump upper version bound on containers library
+    (Justin Le).
+  * Remove invalid profiling options (Michael Morgan).
+
 cheapskate 0.1.1 (01 Aug 2017)
 
   * Added NFData and Generic instances for basic types
diff --git a/cheapskate.cabal b/cheapskate.cabal
--- a/cheapskate.cabal
+++ b/cheapskate.cabal
@@ -1,5 +1,5 @@
 name:                cheapskate
-version:             0.1.1
+version:             0.1.1.1
 synopsis:            Experimental markdown processor.
 description:         This is an experimental Markdown processor in pure
                      Haskell.  It aims to process Markdown efficiently and in
@@ -42,7 +42,7 @@
                      Cheapskate.ParserCombinators
                      Paths_cheapskate
   build-depends:     base >=4.4 && <5,
-                     containers >=0.4 && <0.6,
+                     containers >=0.4 && <0.7,
                      mtl >=2.1 && <2.3,
                      text >= 0.9 && < 1.3,
                      blaze-html >=0.6 && < 0.10,
@@ -64,7 +64,6 @@
                      text >= 0.9 && < 1.3
   default-language:  Haskell2010
   ghc-options:       -Wall -fno-warn-unused-do-bind
-  ghc-prof-options:  -auto-exported -rtsopts
 
 executable cheapskate-dingus
   main-is:           cheapskate-dingus.hs
@@ -78,4 +77,3 @@
   else
     Buildable:       False
   ghc-options:       -Wall -fno-warn-unused-do-bind
-  ghc-prof-options:  -auto-exported -rtsopts
