hzk 0.1.0 → 1.0.0
raw patch · 2 files changed
+3/−2 lines, 2 files
Files
- hzk.cabal +1/−1
- src/Database/Zookeeper/Types.hs +2/−1
hzk.cabal view
@@ -1,7 +1,7 @@ name: hzk author: DiegoSouza <dsouza@c0d3.xxx> license: BSD3-version: 0.1.0+version: 1.0.0 category: Database homepage: http://github.com/dgvncsz0f/hzk synopsis: Haskell client library for Apache Zookeeper
src/Database/Zookeeper/Types.hs view
@@ -76,11 +76,12 @@ -- | The current clientid that may be used to reconnect newtype ClientID = ClientID (Ptr CClientID)+ deriving (Eq) -- | Timeout in milliseconds type Timeout = Int -type Version = Int+type Version = Int32 -- | Authentication scheme provider type Scheme = String