either-list-functions 0.0.4.6 → 0.0.4.7
raw patch · 4 files changed
+44/−39 lines, 4 filesdep ~basedep ~containersdep ~doctestPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, containers, doctest
API changes (from Hackage documentation)
Files
- changelog.md +33/−0
- changelog.txt +0/−27
- either-list-functions.cabal +7/−8
- src/Data/List/EitherFunctions.hs +4/−4
+ changelog.md view
@@ -0,0 +1,33 @@+### 0.0.4.7++Supports base-4.17 and GHC 9.4++### 0.0.4.6++Supports base-4.16 and GHC 9.2++### 0.0.4.5++Supports base-4.15 and GHC 9.0++### 0.0.4.4++Supports base-4.14 and GHC 8.8++### 0.0.4.2++Supports base-4.13 and GHC 8.8++### 0.0.4.0++Added:++- `spanLeft'`, `spanRight'`+- `leadLeft`, `leadLeft'`, `leadRight`, `leadRight'`+- `branchLeft`, `branchRight`, `BranchComparison`++### 0.0.2.0++Supports base-4.12++Added `partition` function
− changelog.txt
@@ -1,27 +0,0 @@-0.0.4.6- - Supports base-4.16 and GHC 9.2--0.0.4.5- - Supports base-4.15 and GHC 9.0--0.0.4.4- - Supports base-4.14 and GHC 8.8--0.0.4.2- - Supports base-4.13 and GHC 8.8--0.0.4.0- - Added:- - spanLeft'- - spanRight'- - leadLeft- - leadLeft'- - leadRight- - leadRight'- - branchLeft- - branchRight- - BranchComparison--0.0.2.0- - Supports base-4.12- - Added 'partition' function
either-list-functions.cabal view
@@ -1,7 +1,7 @@ cabal-version: 3.0 name: either-list-functions-version: 0.0.4.6+version: 0.0.4.7 category: Data synopsis: Functions involving lists of Either @@ -16,10 +16,7 @@ license: Apache-2.0 license-file: license.txt -build-type: Simple--extra-source-files:- changelog.txt+extra-source-files: *.md source-repository head type: git@@ -28,13 +25,15 @@ common base default-language: Haskell2010 ghc-options: -Wall- build-depends: base ^>= 4.12 || ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16+ build-depends:+ , base ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17 library import: base hs-source-dirs: src exposed-modules: Data.List.EitherFunctions- build-depends: containers ^>= 0.6+ build-depends:+ , containers ^>= 0.6.4 test-suite doctest import: base@@ -43,5 +42,5 @@ ghc-options: -threaded hs-source-dirs: test build-depends:- doctest ^>= 0.16 || ^>= 0.17 || ^>= 0.18 || ^>= 0.19 || ^>= 0.20+ , doctest ^>= 0.18.2 || ^>= 0.19 || ^>= 0.20 , either-list-functions
src/Data/List/EitherFunctions.hs view
@@ -219,10 +219,10 @@ -- >>> , p "Preface" -- >>> , chapter "Animals" -- >>> , p "The kingdom animalia"--- >>> , section "Vertibrates"+-- >>> , section "Vertebrates" -- >>> , p "Cats" -- >>> , p "Snakes"--- >>> , section "Invertibrates"+-- >>> , section "Invertebrates" -- >>> , p "Worms" -- >>> , p "Jellyfishes" -- >>> , chapter "Fungus"@@ -248,9 +248,9 @@ -- >>> putStrLn $ drawForest $ map (fmap showContent) mainMatter -- Animals: The kingdom animalia -- |--- +- Vertibrates: Cats, Snakes+-- +- Vertebrates: Cats, Snakes -- |--- `- Invertibrates: Worms, Jellyfishes+-- `- Invertebrates: Worms, Jellyfishes -- <BLANKLINE> -- Fungus: Yeast, Truffles, Morels -- <BLANKLINE>