diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -20,6 +20,13 @@
   - Indicate if changes are major, minor, or patch changes.
 ```
 
+## 0.4.0.0
+
+- [#5](https://github.com/haskell-github-trust/smtp-mail/pull/5) @spencerjanssen
+    - Switch to `crypton-connection` because the `connection` package is no longer maintained
+- [#6](https://github.com/haskell-github-trust/smtp-mail/pull/6) @spencerjanssen
+    - [Change in maintainership](https://github.com/jhickner/smtp-mail/pull/41#issuecomment-2012521041)
+
 ## 0.3.0.0
 
 - [#32](https://github.com/jhickner/smtp-mail/pull/32) @typetetris
diff --git a/smtp-mail.cabal b/smtp-mail.cabal
--- a/smtp-mail.cabal
+++ b/smtp-mail.cabal
@@ -1,16 +1,17 @@
 name:                smtp-mail
-version:             0.3.0.0
+version:             0.4.0.0
 synopsis:            Simple email sending via SMTP
-description:         This packages provides a simple interface for mail over SMTP. PLease see the README for more information.
-homepage:            http://github.com/jhickner/smtp-mail
+description:         This packages provides a simple interface for mail over SMTP. Please see the README for more information.
+homepage:            http://github.com/haskell-github-trust/smtp-mail
 license:             BSD3
 license-file:        LICENSE
 author:              Jason Hickner, Matt Parsons
-maintainer:          parsonsmatt@gmail.com
+maintainer:          spencerjanssen@gmail.com
 -- copyright:
 category:            Network
 build-type:          Simple
 cabal-version:       >=1.10
+tested-with:         GHC ==9.6.4
 
 extra-source-files:
     README.md
@@ -18,7 +19,7 @@
 
 source-repository head
   type: git
-  location: git@github.com:jhickner/smtp-mail.git
+  location: git@github.com:haskell-github-trust/smtp-mail.git
 
 library
   default-language: Haskell2010
@@ -34,7 +35,7 @@
                , base16-bytestring
                , base64-bytestring
                , bytestring
-               , connection
+               , crypton-connection
                , filepath
                , mime-mail
                , network
