diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for bitcoin-compact-filters
 
+## 0.1.0.1 -- 2021-01-17
+
+* Controls `base16-bytestring` dependency explicitly to interoperate with more versions of `haskoin-core`
+
 ## 0.1.0.0 -- 2020-09-14
 
 * First version. Released on an unsuspecting world.
diff --git a/bitcoin-compact-filters.cabal b/bitcoin-compact-filters.cabal
--- a/bitcoin-compact-filters.cabal
+++ b/bitcoin-compact-filters.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.2
 name:                bitcoin-compact-filters
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            BIP 158 compact block filters
 
 copyright:           2020 Bitnomial, Inc.
@@ -19,9 +19,9 @@
   ghc-options:      -Wall
   build-depends:
       base          >=4.12 && <4.15
-    , bytestring   ^>=0.10
+    , bytestring    >=0.10 && <0.12
     , cereal       ^>=0.5
-    , haskoin-core  >=0.13 && <0.16
+    , haskoin-core  >=0.13 && <0.19
     , text         ^>=1.2
 
      
@@ -33,9 +33,10 @@
     Bitcoin.CompactFilter
 
   build-depends:
-      bitstream    ^>=0.3.0.1
-    , transformers ^>=0.5
-    , memory       ^>=0.15
+      bitstream         ^>=0.3.0.1
+    , base16-bytestring   <1.0
+    , transformers      ^>=0.5
+    , memory            ^>=0.15
 
 
 test-suite bitcoin-cf-tests
@@ -58,6 +59,6 @@
   build-depends:
       aeson                    >=1.0   && <1.6
     , bitcoin-compact-filters
-    , tasty                    >=1.0   && <1.4
+    , tasty                    >=1.0   && <1.5
     , tasty-hunit              >=0.9   && <0.11
     , tasty-quickcheck         >=0.8.1 && <0.11
