packages feed

zoovisitor 0.1.3.0 → 0.1.3.1

raw patch · 3 files changed

+8/−1 lines, 3 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ ZooKeeper.Types: pattern ZooContainer :: CreateMode
+ ZooKeeper.Types: pattern ZooEphemeralSequential :: CreateMode
+ ZooKeeper.Types: pattern ZooPersistentSequential :: CreateMode
+ ZooKeeper.Types: pattern ZooPersistentSequentialWithTTL :: CreateMode
+ ZooKeeper.Types: pattern ZooPersistentWithTTL :: CreateMode

Files

README.md view
@@ -1,6 +1,8 @@ ZooVisitor ========== +[![Hackage](https://img.shields.io/hackage/v/zoovisitor.svg?style=flat)](https://hackage.haskell.org/package/zoovisitor)+ An Apache [zookeeper](https://zookeeper.apache.org/) client for Haskell.  Tested on zookeeper 3.4, a higher version should work but not guaranteed.
src/ZooKeeper/Types.hs view
@@ -42,6 +42,11 @@   , pattern I.ZooPersistent   , pattern I.ZooEphemeral   , pattern I.ZooSequence+  , pattern I.ZooPersistentSequential+  , pattern I.ZooEphemeralSequential+  , pattern I.ZooContainer+  , pattern I.ZooPersistentWithTTL+  , pattern I.ZooPersistentSequentialWithTTL    , I.ZooLogLevel   , pattern I.ZooLogError
zoovisitor.cabal view
@@ -1,6 +1,6 @@ cabal-version:      2.2 name:               zoovisitor-version:            0.1.3.0+version:            0.1.3.1 synopsis:   A haskell binding to Apache Zookeeper C library(mt) using Haskell Z project.