interval-patterns 0.2.0.0 → 0.2.0.1
raw patch · 3 files changed
+6/−1 lines, 3 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ Data.Interval.Borel: clip :: Ord x => Interval x -> Borel x -> Borel x
Files
- CHANGELOG.md +4/−0
- interval-patterns.cabal +1/−1
- src/Data/Interval/Borel.hs +1/−0
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for interval-patterns +## 0.2.0.1 - 2022-05-30++* export `clip` from `Data.Interval.Borel`+ ## 0.2.0.0 - 2022-05-30 * generalize `Layers` to arbitrary `Num` types and `Calendar` to arbitrary `Real` types
interval-patterns.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: interval-patterns-version: 0.2.0.0+version: 0.2.0.1 author: Melanie Brown description: A library for easy manipulation of intervals according to their overlap. maintainer: brown.m@pm.me
src/Data/Interval/Borel.hs view
@@ -8,6 +8,7 @@ insert, whole, cutout,+ clip, member, notMember, union,