packages feed

dom-lt 0.2.2 → 0.2.2.1

raw patch · 3 files changed

+9/−5 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Changelog.md view
@@ -1,4 +1,8 @@-## Changes in version 0.2.1+## Changes in version 0.2.2.1++Adjust codebase for ! parsing changes.++## Changes in version 0.2.2  * Fixed #2. Another bug that resulted in incorrect results   for some inputs.
Data/Graph/Dom.hs view
@@ -365,11 +365,11 @@ rootM :: Dom s Node rootM = gets rootE succsM :: Node -> Dom s [Node]-succsM i = gets (IS.toList . (!i) . succE)+succsM i = gets (IS.toList . (! i) . succE) predsM :: Node -> Dom s [Node]-predsM i = gets (IS.toList . (!i) . predE)+predsM i = gets (IS.toList . (! i) . predE) bucketM :: Node -> Dom s [Node]-bucketM i = gets (IS.toList . (!i) . bucketE)+bucketM i = gets (IS.toList . (! i) . bucketE) sizeM :: Node -> Dom s Int sizeM = fetch sizeE sdnoM :: Node -> Dom s Int
dom-lt.cabal view
@@ -1,5 +1,5 @@ name:               dom-lt-version:            0.2.2+version:            0.2.2.1 cabal-version:      >= 1.10 build-type:         Simple license:            BSD3