ascii-superset 1.2.0.0 → 1.2.0.1
raw patch · 3 files changed
+8/−1 lines, 3 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ ASCII.Superset: instance ASCII.Superset.FromChar ASCII.Caseless.CaselessChar
Files
- ascii-superset.cabal +1/−1
- changelog.md +4/−0
- library/ASCII/Superset.hs +3/−0
ascii-superset.cabal view
@@ -1,7 +1,7 @@ cabal-version: 3.0 name: ascii-superset-version: 1.2.0.0+version: 1.2.0.1 synopsis: Representing ASCII with refined supersets category: Data, Text
changelog.md view
@@ -1,3 +1,7 @@+### 1.2.0.1 (2023-01-05)++Add `instance FromChar CaselessChar`+ ### 1.2.0.0 (2023-01-03) Add to the `CharSuperset` class a new method:
library/ASCII/Superset.hs view
@@ -246,6 +246,9 @@ isAsciiCaselessChar _ = Bool.True toCaselessCharUnsafe = id +instance FromChar CaselessChar where+ fromChar = Caseless.disregardCase+ --- instance ToCaselessChar ASCII.Char where