diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,2 +1,6 @@
+v 0.1.0.1
+* lowered containers lower bound
+* rasied some outdated upper bounds (profunctors, hashable)
+
 v 0.1.0.0
 * Initial hackage release
diff --git a/Frames-map-reduce.cabal b/Frames-map-reduce.cabal
--- a/Frames-map-reduce.cabal
+++ b/Frames-map-reduce.cabal
@@ -1,13 +1,14 @@
 cabal-version:       2.2
 
 name:                Frames-map-reduce
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Frames wrapper for map-reduce-folds and some extra folds helpers.
 description:         Frames-map-reduce provides some helpers for using the map-reduce-folds library with vinyl records and Frames.
                      These include functions for filtering Frames, splitting records into key columns and data columns and
                      recombining key columns with other columns after reducing.
                      This package also provides some tools for building folds over records from folds over each column,
                      e.g, summing multiple numerical columns into a multi-column result.
+bug-reports:         https://github.com/adamConnerSax/Frames-map-reduce/issues                     
 license:             BSD-3-Clause
 license-file:        LICENSE
 author:              Adam Conner-Sax
@@ -29,10 +30,10 @@
 
   build-depends: Frames               >= 0.6.1 && < 0.7,
                  base                 >= 4.12.0 && < 4.13,
-                 containers           >= 0.6.0 && < 0.7,
-                 hashable             >= 1.2.7 && < 1.3,
+                 containers           >= 0.5.0 && < 0.7,
+                 hashable             >= 1.2.7 && < 1.4,
                  map-reduce-folds     >= 0.1.0.0,                 
-                 profunctors          >= 5.3 && < 5.4,
+                 profunctors          >= 5.3 && < 5.5,
                  vinyl                >= 0.11.0 && < 0.12,
                  foldl                >= 1.4.5 && < 1.5,
                  newtype              >= 0.2 && < 0.3
@@ -47,7 +48,7 @@
                   base,
                   foldl,                  
                   Frames,
-                  Frames-map-reduce -any,
+                  Frames-map-reduce,
                   text >= 1.2.3 && < 1.3, 
                   vinyl,
                   random >= 1.1 && < 1.2,                  
