diff --git a/Flow.hs b/Flow.hs
--- a/Flow.hs
+++ b/Flow.hs
@@ -174,6 +174,7 @@
     True
     >>> undefined !> const True
     *** Exception: Prelude.undefined
+    ...
 -}
 infixl 0 !>
 (!>) :: a -> (a -> b) -> b
@@ -199,6 +200,7 @@
     True
     >>> const True <! undefined
     *** Exception: Prelude.undefined
+    ...
 -}
 infixr 0 <!
 (<!) :: (a -> b) -> a -> b
@@ -221,6 +223,7 @@
     True
     >>> apply' undefined (const True)
     *** Exception: Prelude.undefined
+    ...
 -}
 apply' :: a -> (a -> b) -> b
 apply' x f = seq x (apply x f)
diff --git a/flow.cabal b/flow.cabal
--- a/flow.cabal
+++ b/flow.cabal
@@ -1,9 +1,9 @@
--- This file has been generated from package.yaml by hpack version 0.9.0.
+-- This file has been generated from package.yaml by hpack version 0.14.0.
 --
 -- see: https://github.com/sol/hpack
 
 name:           flow
-version:        1.0.6
+version:        1.0.7
 synopsis:       Write more understandable Haskell.
 description:    Flow provides operators for writing more understandable Haskell.
 category:       Combinators, Functions, Utility
diff --git a/package.yaml b/package.yaml
--- a/package.yaml
+++ b/package.yaml
@@ -27,4 +27,4 @@
     - QuickCheck ==2.*
     - template-haskell ==2.*
     main: FlowTest.hs
-version: '1.0.6'
+version: '1.0.7'
diff --git a/stack.yaml b/stack.yaml
--- a/stack.yaml
+++ b/stack.yaml
@@ -1,3 +1,3 @@
 install-ghc: true
 require-stack-version: ! '>=1.0.4'
-resolver: lts-5.8
+resolver: nightly-2016-05-26
