diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown
--- a/CHANGELOG.markdown
+++ b/CHANGELOG.markdown
@@ -1,3 +1,7 @@
+0.1.1
+-----
+* Fixed a critical bug with (<?>)
+
 0.1
 ---
 * Repository initialized
diff --git a/parsec-parsers.cabal b/parsec-parsers.cabal
--- a/parsec-parsers.cabal
+++ b/parsec-parsers.cabal
@@ -1,6 +1,6 @@
 name:          parsec-parsers
 category:      Text, Parsing
-version:       0.1
+version:       0.1.1
 license:       BSD3
 cabal-version: >= 1.10
 license-file:  LICENSE
diff --git a/src/Text/Parser/Parsec.hs b/src/Text/Parser/Parsec.hs
--- a/src/Text/Parser/Parsec.hs
+++ b/src/Text/Parser/Parsec.hs
@@ -25,7 +25,7 @@
 
 instance (Stream s m t, Show t) => P.Parsing (ParsecT s u m) where
   try           = try
-  (<?>)         = (P.<?>)
+  (<?>)         = (<?>)
   skipMany      = skipMany
   skipSome      = skipMany1
   unexpected    = unexpected
