diff --git a/ascii-predicates.cabal b/ascii-predicates.cabal
--- a/ascii-predicates.cabal
+++ b/ascii-predicates.cabal
@@ -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
diff --git a/changelog.md b/changelog.md
new file mode 100644
--- /dev/null
+++ b/changelog.md
@@ -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
diff --git a/readme.md b/readme.md
new file mode 100644
--- /dev/null
+++ b/readme.md
@@ -0,0 +1,1 @@
+This package provides a variety of predicates on the ASCII character set.
