hlrdb-core 0.1.6.0 → 0.1.6.1
raw patch · 2 files changed
+9/−9 lines, 2 filesdep ~hedisdep ~lensdep ~profunctorsPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: hedis, lens, profunctors
API changes (from Hackage documentation)
Files
- hlrdb-core.cabal +8/−8
- src/HLRDB/Structures/HSet.hs +1/−1
hlrdb-core.cabal view
@@ -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:
src/HLRDB/Structures/HSet.hs view
@@ -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