diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
 # Revision history for named-text
 
+## 1.0.1.0 -- 2022-12-23
+
+* Specific GHC support range for GHC 8.8--9.4
+* Small cabal file adjustments.
+
 ## 1.0.0.0 -- 2022-06-29
 
 * First independent version.
diff --git a/named-text.cabal b/named-text.cabal
--- a/named-text.cabal
+++ b/named-text.cabal
@@ -1,6 +1,6 @@
 cabal-version:      2.4
 name:               named-text
-version:            1.0.0.0
+version:            1.0.1.0
 synopsis:           A parameterized named text type and associated functionality.
 description:
   .
@@ -27,7 +27,8 @@
 copyright:          Galois Inc, 2022
 category:           Data
 build-type:         Simple
-extra-source-files: CHANGELOG.md
+extra-doc-files:    CHANGELOG.md
+tested-with:        GHC == 9.4.2, GHC == 9.2.4, GHC == 9.0.2, GHC == 8.10.7, GHC == 8.8.4
 
 source-repository head
   type: git
@@ -48,7 +49,7 @@
     import:           bldspec
     hs-source-dirs:   .
     default-language: Haskell2010
-    build-depends:    base >= 4.10 && < 4.15
+    build-depends:    base >= 4.13 && < 4.18
                     , deepseq
                     , hashable
                     , prettyprinter >= 1.7.0 && < 1.8
