ascii-char 1.0.0.4 → 1.0.0.6
raw patch · 3 files changed
+7/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ASCII/Char.hs +1/−1
- ascii-char.cabal +1/−1
- changelog.txt +5/−0
ASCII/Char.hs view
@@ -70,7 +70,7 @@ -- | The least character is 'Null', and the greatest character is 'Delete'. You can write @(['minBound' .. 'maxBound'] :: [ASCII.'Char'])@ to get a list of all the ASCII characters. deriving stock instance Bounded Char --- | 'show' produces the name of a constructor. For example, the character @e@ is shown as @"SmallLetterE"@. See "ASCII.Char" for the complete list of constructor names.+-- | 'show' produces the name of a constructor. For example, the character @e@ is shown as “@SmallLetterE@”. See "ASCII.Char" for the complete list of constructor names. deriving stock instance Show Char -- | The 'Data' instance allows ASCII characters to be used with generic programming in the “SYB” style. (See the <https://hackage.haskell.org/package/syb syb> package and the 2003 paper <https://www.microsoft.com/en-us/research/wp-content/uploads/2003/01/hmap.pdf Scrap Your Boilerplate> by Ralf Lämmel and Simon Peyton Jones.)
ascii-char.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.0 name: ascii-char-version: 1.0.0.4+version: 1.0.0.6 synopsis: A Char type representing an ASCII character category: Data, Text
changelog.txt view
@@ -1,2 +1,7 @@ 1.0.0.0 - 2020-05-05 - Initial release+ 1.0.0.2 - 2020-05-18 - Support GHC 8.10++1.0.0.4 - 2021-01-25 - Add some comments++1.0.0.6 - 2021-01-27 - Minor documentation fix