diff --git a/ASCII/Char.hs b/ASCII/Char.hs
--- a/ASCII/Char.hs
+++ b/ASCII/Char.hs
@@ -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.)
diff --git a/ascii-char.cabal b/ascii-char.cabal
--- a/ascii-char.cabal
+++ b/ascii-char.cabal
@@ -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
 
diff --git a/changelog.txt b/changelog.txt
--- a/changelog.txt
+++ b/changelog.txt
@@ -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
