diff --git a/changelog.txt b/changelog.txt
deleted file mode 100644
--- a/changelog.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Initial release: version 0.1.0.0, published in 2018.
-
-Version 0.1.0.2, published October 2020:
-  ★ Adds tighter version bounds
-  ★ Supports base16-bytestring version 1.0, drops support for earlier versions
-
-Version 0.1.0.4, published March 2021:
-  ★ Adds support for GHC 9.0
-  ★ Removes the test suite's dependency on doctest
-
-Version 0.1.0.6, published March 2022:
-  ★ Adds support for GHC 9.2
diff --git a/hex-text.cabal b/hex-text.cabal
--- a/hex-text.cabal
+++ b/hex-text.cabal
@@ -1,7 +1,7 @@
 cabal-version: 3.0
 
 name: hex-text
-version: 0.1.0.6
+version: 0.1.0.7
 category: Text
 
 synopsis: ByteString-Text hexidecimal conversions
@@ -23,7 +23,6 @@
 
 extra-source-files:
     README.md
-    changelog.txt
 
 source-repository head
     type: git
@@ -32,10 +31,10 @@
 common base
     default-language: Haskell2010
     build-depends:
-        base ^>= 4.9 || ^>= 4.10 || ^>= 4.11 || ^>= 4.12 || ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16
+        base ^>= 4.9 || ^>= 4.10 || ^>= 4.11 || ^>= 4.12 || ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17
       , base16-bytestring ^>= 1.0
       , bytestring ^>= 0.10 || ^>= 0.11
-      , text ^>= 1.2
+      , text ^>= 1.2 || ^>= 2.0
 
 library
     import: base
diff --git a/src/Text/Hex.hs b/src/Text/Hex.hs
--- a/src/Text/Hex.hs
+++ b/src/Text/Hex.hs
@@ -84,6 +84,7 @@
 --
 -- Unpacking the ByteString in the following examples allows for
 -- prettier printing in the REPL.
+--
 -- >>> (fmap ByteString.unpack . decodeHex . Text.pack) "c0a80102"
 -- Just [192,168,1,2]
 --
