haskell-neo4j-client 0.2.0.1 → 0.2.0.2
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Database.Neo4j: data Neo4j a
+ Database.Neo4j: Neo4j :: (Connection -> ResourceT IO a) -> Neo4j a
+ Database.Neo4j: newtype Neo4j a
+ Database.Neo4j: runNeo4j :: Neo4j a -> Connection -> ResourceT IO a
Files
- haskell-neo4j-client.cabal +1/−1
- src/Database/Neo4j.hs +1/−1
haskell-neo4j-client.cabal view
@@ -1,5 +1,5 @@ name: haskell-neo4j-client-version: 0.2.0.1+version: 0.2.0.2 synopsis: A Haskell neo4j client description: Library to interact with Neo4j databases. For now, its API covers basic operations for nodes, relationships, labels
src/Database/Neo4j.hs view
@@ -18,7 +18,7 @@ -- * Connection handling objects Connection, Hostname, Port, newConnection, withConnection, -- * Main monadic type to handle sequences of commands to Neo4j- Neo4j,+ Neo4j(..), -- * Constructing and managing node/relationship properties Val(..), PropertyValue(..), newval, (|:), Properties, emptyProperties, getProperties, getProperty, setProperties, setProperty, deleteProperties, deleteProperty,