diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## [0.1.0.1] - 2023-10-15
+
+- Support GHC 9.8
+
 ## [0.1.0] - 2022-11-03
 
 - Initial release
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright 2018-2022 Mitchell Rosen
+Copyright 2018-2023 Mitchell Rosen, Travis Staton
 
 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
 
diff --git a/src/Termbox/Tea.hs b/src/Termbox/Tea.hs
--- a/src/Termbox/Tea.hs
+++ b/src/Termbox/Tea.hs
@@ -172,7 +172,7 @@
 --
 -- @run@ either:
 --
---   * Returns immediately with an 'InitError'.
+--   * Returns immediately with an 'Termbox.Tea.InitError'.
 --   * Returns the final state, once it's @finished@.
 run :: Program s -> IO (Either Termbox.InitError s)
 run program =
diff --git a/termbox-tea.cabal b/termbox-tea.cabal
--- a/termbox-tea.cabal
+++ b/termbox-tea.cabal
@@ -1,31 +1,32 @@
 cabal-version: 2.4
 
 author: Mitchell Rosen
-bug-reports: https://github.com/termbox/termbox-haskell/issues
+bug-reports: https://github.com/awkward-squad/termbox/issues
 build-type: Simple
 category: User Interfaces
-copyright: (c) 2018-2022, Mitchell Rosen
+copyright: (c) 2018-2023 Mitchell Rosen, Travis Staton
 description:
   This package provides an Elm Architecture interface to @termbox@ programs.
   .
   See also:
   .
   * @<https://hackage.haskell.org/package/termbox-banana termbox-banana>@ for a @reactive-banana@ FRP interface.
-homepage: https://github.com/termbox/termbox-haskell
+homepage: https://github.com/awkward-squad/termbox
 license: BSD-3-Clause
 license-file: LICENSE
-maintainer: Mitchell Rosen <mitchellwrosen@gmail.com>
+maintainer: Mitchell Rosen <mitchellwrosen@gmail.com>, Travis Staton <hello@travisstaton.com>
 name: termbox-tea
 synopsis: termbox + The Elm Architecture
-tested-with: GHC == 9.0.2, GHC == 9.2.4, GHC == 9.4.2
-version: 0.1.0
+tested-with: GHC == 9.4.7, GHC == 9.6.3, GHC == 9.8.1
+version: 0.1.0.1
 
 extra-source-files:
   CHANGELOG.md
 
 source-repository head
   type: git
-  location: git://github.com/termbox/termbox-haskell.git
+  location: git://github.com/awkward-squad/termbox.git
+  subdir: termbox-tea
 
 flag build-examples
   default: False
@@ -68,11 +69,14 @@
   if impl(ghc >= 9.2)
     ghc-options:
       -Wno-missing-kind-signatures
+  if impl(ghc >= 9.8)
+    ghc-options:
+      -Wno-missing-role-annotations
 
 library
   import: component
   build-depends:
-    base ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17,
+    base ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19,
     termbox ^>= 1.1.0,
     ki ^>= 1.0,
   exposed-modules: Termbox.Tea
