diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+# O.3.2.1 [Non-maintainer upload]
+
+_2022-11-21_, Andreas Abel, on behalf of the Hackage Trustees
+
+- Build with GHC 9.2
+
 # O.3.2 [Non-maintainer upload]
 
 - Semigroup-Monoid compatibility (GHC-8.4)
diff --git a/Data/Text/Format/Int.hs b/Data/Text/Format/Int.hs
--- a/Data/Text/Format/Int.hs
+++ b/Data/Text/Format/Int.hs
@@ -30,7 +30,7 @@
 # if __GLASGOW_HASKELL__ < 611
 import GHC.Integer.Internals
 # else
-import GHC.Integer.GMP.Internals
+import GHC.Integer.GMP.Internals (Integer(..))
 # endif
 #endif
 
diff --git a/README.markdown b/README.markdown
--- a/README.markdown
+++ b/README.markdown
@@ -1,28 +1,17 @@
-# Welcome to text-format
-
-text-format is a fast and easy-to-use Haskell library for formatting
-text strings.
-
-# Join in!
-
-We are happy to receive bug reports, fixes, documentation enhancements,
-and other improvements.
-
-Please report bugs via the
-[github issue tracker](https://github.com/bos/text-format/issues).
-
-Master [git repository](https://github.com/bos/text-format):
-
-* `git clone git://github.com/bos/text-format.git`
-
-There's also a [Mercurial mirror](https://bitbucket.org/bos/text-format):
+Welcome to text-format
+======================
 
-* `hg clone https://bitbucket.org/bos/text-format`
+`text-format` is a fast and easy-to-use Haskell library for formatting text strings.
 
-(You can create and contribute changes using either git or Mercurial.)
+You may report bugs via the
+[github issue tracker](https://github.com/haskell-trustees/text-format/issues).
 
 Authors
 -------
 
-This library is written and maintained by Bryan O'Sullivan,
-<bos@serpentine.com>.
+This library has been written by Bryan O'Sullivan, <bos@serpentine.com>.
+
+Related packages
+================
+
+- https://hackage.haskell.org/package/formatting
diff --git a/text-format.cabal b/text-format.cabal
--- a/text-format.cabal
+++ b/text-format.cabal
@@ -1,15 +1,15 @@
+cabal-version:  >= 1.10
 name:           text-format
-version:        0.3.2
+version:        0.3.2.1
 license:        BSD3
 license-file:   LICENSE
-homepage:       https://github.com/bos/text-format
-bug-reports:    https://github.com/bos/text-format/issues
+homepage:       https://github.com/hackage-trustees/text-format
+bug-reports:    https://github.com/hackage-trustees/text-format/issues
 category:       Text
 author:         Bryan O'Sullivan <bos@serpentine.com>
-maintainer:     Bryan O'Sullivan <bos@serpentine.com>
+maintainer:     Hackage Trustees
 stability:      experimental
 synopsis:       Text formatting
-cabal-version:  >= 1.8
 build-type:     Simple
 description:
     A text formatting library optimized for both ease of use and high
@@ -24,8 +24,12 @@
    || == 7.10.3
    || == 8.0.2
    || == 8.2.2
-   || == 8.4.3
-   || == 8.6.1
+   || == 8.4.4
+   || == 8.6.5
+   || == 8.8.4
+   || == 8.10.7
+   || == 9.0.2
+   || == 9.2.5
 
 extra-source-files:
     README.markdown
@@ -52,16 +56,18 @@
     Data.Text.Format.Int
 
   build-depends:
-    array,
-    base >=4.3 && <4.12,
-    integer-gmp >= 0.2,
-    double-conversion >= 0.2.0.0,
-    ghc-prim,
-    old-locale,
-    text >= 0.11.0.8,
-    time,
-    transformers
+      array
+    , base              >= 4.3       && < 4.17
+    , integer-gmp       >= 0.2
+    , double-conversion >= 0.2.0.0
+    , ghc-prim
+    , old-locale
+    , text              >= 0.11.0.8
+    , time
+    , transformers
 
+  default-language: Haskell98
+
   if flag(developer)
     ghc-options: -Werror
     ghc-prof-options: -auto-all
@@ -72,12 +78,8 @@
 
   if !impl(ghc >= 8.0)
     build-depends:
-      semigroups          >= 0.18.5  && < 0.19
+      semigroups        >= 0.18.5  && < 0.20
 
 source-repository head
   type:     git
-  location: https://github.com/bos/text-format
-
-source-repository head
-  type:     mercurial
-  location: https://bitbucket.org/bos/text-format
+  location: https://github.com/hackage-trustees/text-format.git
