diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,3 +1,7 @@
+# 1.0.8.3
+
+* Fix version bounds for chunked-data/mono-traversable combos
+
 # 1.0.8.2
 
 * Fix foldl1 not being "a strict left fold" as advertised.
diff --git a/conduit-combinators.cabal b/conduit-combinators.cabal
--- a/conduit-combinators.cabal
+++ b/conduit-combinators.cabal
@@ -1,5 +1,5 @@
 name:                conduit-combinators
-version:             1.0.8.2
+version:             1.0.8.3
 synopsis:            Commonly used conduit functions, for both chunked and unchunked data
 description:         Provides a replacement for Data.Conduit.List, as well as a convenient Conduit module.
 homepage:            https://github.com/snoyberg/mono-traversable
@@ -12,6 +12,11 @@
 cabal-version:       >=1.8
 extra-source-files:  test/subdir/dummyfile.txt fusion-macros.h ChangeLog.md README.md
 
+flag monotrav1
+  default: True
+  manual: False
+  description: Use mono-traversable 1.0 or later
+
 library
   exposed-modules:     Conduit
                        Data.Conduit.Combinators
@@ -19,13 +24,11 @@
                        Data.Conduit.Combinators.Stream
   other-modules:       Data.Conduit.Combinators.Unqualified
   build-depends:       base >= 4 && < 5
-                     , chunked-data
                      , conduit >= 1.2.8
                      , conduit-extra >= 1.1.1
                      , transformers
                      , transformers-base
                      , primitive
-                     , mono-traversable >= 0.5
                      , vector
                      , text
                      , bytestring
@@ -37,6 +40,14 @@
                      , resourcet
                      , monad-control
                      , filepath
+
+  if flag(monotrav1)
+    build-depends:     chunked-data     >= 0.3
+                     , mono-traversable >= 1.0
+  else
+    build-depends:     chunked-data     < 0.3
+                     , mono-traversable >= 0.5 && < 1.0
+
   if os(windows)
       cpp-options:     -DWINDOWS
   else
