diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,10 @@
 # Changelog
 
+## 0.1.0.1
+
+### Updated
+* CI now supports GHC versions 9.6.2, 9.4.5, 9.2.8, 9.0.2, and 8.10.7.
+
 ## 0.1.0.0
 
 ### Added
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -55,4 +55,4 @@
 
 ## Bugs
 Report any bugs on the Github issue tracker, or by emailing
-[primecount-haskell@mail.preetham.io](mailto:primecount-haskell@mail.preetham.io).
+[libraries@mail.preetham.io](mailto:libraries@mail.preetham.io).
diff --git a/bench/Main.hs b/bench/Main.hs
--- a/bench/Main.hs
+++ b/bench/Main.hs
@@ -1,7 +1,7 @@
 -- |
 -- Copyright   : 2022 Preetham Gujjula
 -- License     : BSD-3-Clause
--- Maintainer  : primecount-haskell@mail.preetham.io
+-- Maintainer  : libraries@mail.preetham.io
 -- Stability   : experimental
 module Main (main) where
 
diff --git a/primecount.cabal b/primecount.cabal
--- a/primecount.cabal
+++ b/primecount.cabal
@@ -1,24 +1,24 @@
 cabal-version: 2.2
 
--- This file has been generated from package.yaml by hpack version 0.34.4.
+-- This file has been generated from package.yaml by hpack version 0.35.1.
 --
 -- see: https://github.com/sol/hpack
 
 name:           primecount
-version:        0.1.0.0
+version:        0.1.0.1
 synopsis:       Bindings to the primecount library
 description:    Please see the README on Github at <https://github.com/pgujjula/primecount-haskell#readme>
 category:       Math, Number Theory
 homepage:       https://github.com/pgujjula/primecount-haskell#readme
 bug-reports:    https://github.com/pgujjula/primecount-haskell/issues
 author:         Preetham Gujjula
-maintainer:     primecount-haskell@mail.preetham.io
+maintainer:     libraries@mail.preetham.io
 copyright:      2021 Preetham Gujjula
 license:        BSD-3-Clause
 license-file:   LICENSE
 build-type:     Simple
 tested-with:
-    GHC ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.1 || ==9.2.1
+    GHC ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.5 || ==9.6.2
 extra-source-files:
     README.md
     ChangeLog.md
@@ -55,9 +55,9 @@
   build-depends:
       base >=4.7 && <5.0
     , primecount
-    , silently
-    , tasty
-    , tasty-hunit
+    , silently ==1.2.*
+    , tasty ==1.4.*
+    , tasty-hunit ==0.10.*
   default-language: Haskell2010
 
 benchmark primecount-bench
@@ -71,5 +71,5 @@
   build-depends:
       base >=4.7 && <5.0
     , primecount
-    , tasty-bench
+    , tasty-bench ==0.3.*
   default-language: Haskell2010
diff --git a/src/Math/NumberTheory/Prime/Count.hs b/src/Math/NumberTheory/Prime/Count.hs
--- a/src/Math/NumberTheory/Prime/Count.hs
+++ b/src/Math/NumberTheory/Prime/Count.hs
@@ -1,8 +1,8 @@
 -- |
 -- Module      : Math.NumberTheory.Prime.Count
 -- Copyright   : 2021 Preetham Gujjula
--- License     : BSD-Clause
--- Maintainer  : primecount-haskell@mail.preetham.io
+-- License     : BSD-3-Clause
+-- Maintainer  : libraries@mail.preetham.io
 -- Stability   : experimental
 --
 -- This module provides a high-level, polymorphic interface to the primecount
diff --git a/src/Math/NumberTheory/Prime/Count/FFI.hs b/src/Math/NumberTheory/Prime/Count/FFI.hs
--- a/src/Math/NumberTheory/Prime/Count/FFI.hs
+++ b/src/Math/NumberTheory/Prime/Count/FFI.hs
@@ -2,7 +2,7 @@
 -- Module      : Math.NumberTheory.Prime.Count.FFI
 -- Copyright   : 2021 Preetham Gujjula
 -- License     : BSD-3-Clause
--- Maintainer  : primecount-haskell@mail.preetham.io
+-- Maintainer  : libraries@mail.preetham.io
 -- Stability   : experimental
 --
 -- This module provides direct access to the C API of the primecount library.
diff --git a/test/Main.hs b/test/Main.hs
--- a/test/Main.hs
+++ b/test/Main.hs
@@ -1,7 +1,7 @@
 -- |
 -- Copyright   : 2021 Preetham Gujjula
 -- License     : BSD-3-Clause
--- Maintainer  : primecount-haskell@mail.preetham.io
+-- Maintainer  : libraries@mail.preetham.io
 -- Stability   : experimental
 module Main (main) where
 
diff --git a/test/Test/Math/NumberTheory/Prime/Count.hs b/test/Test/Math/NumberTheory/Prime/Count.hs
--- a/test/Test/Math/NumberTheory/Prime/Count.hs
+++ b/test/Test/Math/NumberTheory/Prime/Count.hs
@@ -1,7 +1,7 @@
 -- |
 -- Copyright   : 2021 Preetham Gujjula
 -- License     : BSD-3-Clause
--- Maintainer  : primecount-haskell@mail.preetham.io
+-- Maintainer  : libraries@mail.preetham.io
 -- Stability   : experimental
 module Test.Math.NumberTheory.Prime.Count (tests) where
 
