diff --git a/hlrdb-core.cabal b/hlrdb-core.cabal
--- a/hlrdb-core.cabal
+++ b/hlrdb-core.cabal
@@ -1,5 +1,5 @@
 name:                hlrdb-core
-version:             0.1.6.0
+version:             0.1.6.1
 synopsis:            High-level Redis Database Core API
 description:         A library for type-driven interaction with Redis
 license:             MIT
@@ -29,15 +29,15 @@
     , HLRDB.Structures.SSet
     , HLRDB.Internal
   build-depends: base >= 4.9 && < 5.0
-               , bytestring >= 0.10.8.2 && < 0.10.11
+               , bytestring >= 0.10.8.2 && < 0.12
                , hashable >= 1.2.6.1 && < 1.4
-               , hedis >= 0.10.1 && < 0.13
-               , lens >= 4.16 && < 4.20
+               , hedis >= 0.10.1 && < 0.15
+               , lens >= 4.16 && < 5.1
                , mtl ^>= 2.2.2
-               , profunctors >= 5.2.2 && < 5.6
-               , random >= 1.1 && < 1.2
-               , time >=1.6 && <1.10
-               , unordered-containers >= 0.2.8.0 && < 0.2.11
+               , profunctors >= 5.2.2 && < 5.7
+               , random >= 1.1 && < 1.3
+               , time >=1.6 && <1.12
+               , unordered-containers >= 0.2.8.0 && < 0.2.14
   hs-source-dirs:      src
   default-language:    Haskell2010
   default-extensions:
diff --git a/src/HLRDB/Structures/HSet.hs b/src/HLRDB/Structures/HSet.hs
--- a/src/HLRDB/Structures/HSet.hs
+++ b/src/HLRDB/Structures/HSet.hs
@@ -51,7 +51,7 @@
 -- | Set via key and subkey
 hset :: MonadRedis m => RedisHSet a s b -> a -> s -> b -> m (ActionPerformed Creation)
 hset p@(RHSet (E _ eb _) (HSET e _)) k s =
-    unwrapCreatedBool
+    unwrapCreated
   . Redis.hset (primKey p k) (e s)
   . runIdentity
   . eb
