lens-witherable 0.2.0.0 → 0.2.0.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 +6/−2
- lens-witherable.cabal +1/−1
- src/Witherable/Lens.hs +2/−2
CHANGELOG.md view
@@ -1,8 +1,12 @@ # Revision history for lens-witherable +## 0.2.0.1 -- 2024-03-10++* Arrange documentation slightly better.+ ## 0.2.0.0 -- 2024-03-10 -* Rename filterOfA -> filterAOf, port over deprecated lenslike functions from witherable+* Rename filterOfA -> filterAOf, port over deprecated lenslike functions from witherable. ## 0.1.1.0 -- 2024-03-10 @@ -10,7 +14,7 @@ ## 0.1.0.2 -- 2022-11-16 -* Discovered cabal mixins. No longer using CPP, but now requiring GHC 8.2 or newer+* Discovered cabal mixins. No longer using CPP, but now requiring GHC 8.2 or newer. ## 0.1.0.1 -- 2022-11-14
lens-witherable.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: lens-witherable-version: 0.2.0.0+version: 0.2.0.1 synopsis: lens-compatible tools for working with witherable copyright: Copyright (C) 2021-2022 Carl Howells license: MIT
src/Witherable/Lens.hs view
@@ -24,6 +24,7 @@ import Data.HashSet (HashSet) import qualified Data.HashSet as H +-- * Basic API -- | A variant on 'traverse' that allows the targets to be filtered -- out of the 'Witherable' structure. Note that this introduces a@@ -82,8 +83,7 @@ ------------------------------------------------------------ Port deprecated definitions over from Data.Witherable+-- * Functions consuming withering lens-likes -- | Transform and effectfully filter elements matched by a specific -- 'Withering' context, a la 'wither'.