packages feed

ascii-predicates 1.0.1.0 → 1.0.1.1

raw patch · 3 files changed

+47/−9 lines, 3 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

ascii-predicates.cabal view
@@ -1,7 +1,7 @@ cabal-version: 3.0  name: ascii-predicates-version: 1.0.1.0+version: 1.0.1.1 synopsis: Various categorizations of ASCII characters category: Data, Text @@ -15,14 +15,14 @@ author: Chris Martin maintainer: Chris Martin, Julie Moronuki -homepage: https://github.com/typeclasses/ascii-bug-Reports: https://github.com/typeclasses/ascii/issues+homepage: https://github.com/typeclasses/ascii-predicates+bug-reports: https://github.com/typeclasses/ascii-predicates/issues -build-type: Simple+extra-doc-files: *.md  source-repository head     type: git-    location: git://github.com/typeclasses/ascii.git+    location: git://github.com/typeclasses/ascii-predicates.git  common base     default-language: Haskell2010@@ -33,7 +33,7 @@      build-depends:         ascii-char ^>= 1.0-      , base >= 4.13 && < 4.17+      , base ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17  library     import: base@@ -41,8 +41,8 @@      exposed-modules:         ASCII.Predicates-      , ASCII.Lists-      , ASCII.ListsAndPredicates+        ASCII.Lists+        ASCII.ListsAndPredicates  test-suite test-ascii-predicates     import: base@@ -57,4 +57,4 @@      build-depends:         ascii-predicates-      , hedgehog ^>= 1.0.1 || ^>= 1.1+      , hedgehog ^>= 1.0.5 || ^>= 1.1 || ^>= 1.2
+ changelog.md view
@@ -0,0 +1,37 @@+### 1.0.1.1 (2022-12-30)++Metadata changes only++### 1.0.1.0 (2022-05-04)++Add:+  - `isVisible :: Char -> Bool`+  - `visibleCharacters :: [Char]`++Drop support for:+  - `base` 4.11 (GHC 8.4)+  - `base` 4.12 (GHC 8.6)++### 1.0.0.10 (2022-03-22)++Switch test-suite over to hedgehog++### 1.0.0.8 (2022-01-09)++Support GHC 9.2++### 1.0.0.6 (2021-09-26)++Add a test suite++### 1.0.0.4 (2021-02-20)++Support GHC 9.0++### 1.0.0.2 (2020-05-18)++Support GHC 8.10++### 1.0.0.0 (2020-05-05)++Initial release
+ readme.md view
@@ -0,0 +1,1 @@+This package provides a variety of predicates on the ASCII character set.