interval-algebra 0.3.1 → 0.3.2
raw patch · 3 files changed
+6/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- interval-algebra.cabal +1/−1
- src/IntervalAlgebra.hs +1/−2
ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for interval-algebra +## 0.3.2++* Fixes bug in `filterNotDisjoint`+ ## 0.3.1 * Adds the `diff` function to the `IntervalSizeable` to make comparisons of endpoints easier.
interval-algebra.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: interval-algebra-version: 0.3.1+version: 0.3.2 synopsis: An implementation of Allen's interval algebra for temporal logic description: Please see the README on GitHub at <https://github.com/novisci/interval-algebra> category: Algebra,Time
src/IntervalAlgebra.hs view
@@ -441,8 +441,7 @@ -- | Filter a 'Witherable.Filterable' of Interval as to those that are 'notDisjoint' -- from the @Interval a@ in the first argument. filterNotDisjoint :: Interval a -> f (Interval a) -> f (Interval a)- filterNotDisjoint = filterMaker disjoint -+ filterNotDisjoint = filterMaker notDisjoint -- | Filter a 'Witherable.Filterable' of Interval as to those that are 'in'' -- the @Interval a@ in the first argument.