packages feed

crdt 0.4 → 0.5

raw patch · 3 files changed

+5/−5 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ CRDT.GSet.Cv: type GSet = Set

Files

crdt.cabal view
@@ -3,14 +3,14 @@ -- see: https://github.com/sol/hpack  name:           crdt-version:        0.4+version:        0.5 synopsis:       Conflict-free replicated data types description:    Definitions of CmRDT and CvRDT. Implementations for some classic CRDTs. category:       Distributed Systems homepage:       https://github.com/cblp/crdt#readme bug-reports:    https://github.com/cblp/crdt/issues maintainer:     Yuriy Syrovetskiy <cblp@cblp.su>-copyright:      © 2017  Yuriy Syrovetskiy <cblp@cblp.su>, Nikolay Loginov <kemphack@mail.ru>+copyright:      2017 Yuriy Syrovetskiy, Nikolay Loginov license:        BSD3 license-file:   LICENSE build-type:     Simple
lib/CRDT/GSet/Cv.hs view
@@ -1,12 +1,13 @@ module CRDT.GSet.Cv-    ( add+    ( GSet+    , add     , initial     , query     ) where  import qualified Data.Set as Set -import CRDT.GSet.Cv.Internal+import           CRDT.GSet.Cv.Internal  -- | update add :: Ord a => a -> GSet a -> GSet a
test/GSet.hs view
@@ -11,7 +11,6 @@ import           Test.Tasty.QuickCheck (testProperty, (==>))  import qualified CRDT.GSet.Cv as Cv-import qualified CRDT.GSet.Cv.Internal as Cv  import           Laws (cvrdtLaws)