diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,12 @@
 The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
 and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
 
+## [1.4.6] - 2025-05-09
+
+### Removed
+
+- Removed more unnecessary file boilerplate.
+
 ## [1.4.5] - 2025-05-09
 
 ### Removed
diff --git a/secp256k1-haskell.cabal b/secp256k1-haskell.cabal
--- a/secp256k1-haskell.cabal
+++ b/secp256k1-haskell.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           secp256k1-haskell
-version:        1.4.5
+version:        1.4.6
 synopsis:       Bindings for secp256k1
 description:    Sign and verify signatures using the secp256k1 library.
 category:       Crypto
diff --git a/src/Crypto/Secp256k1/Internal/Base.hs b/src/Crypto/Secp256k1/Internal/Base.hs
--- a/src/Crypto/Secp256k1/Internal/Base.hs
+++ b/src/Crypto/Secp256k1/Internal/Base.hs
@@ -6,18 +6,6 @@
 {-# LANGUAGE MultiParamTypeClasses #-}
 {-# LANGUAGE OverloadedRecordDot #-}
 {-# LANGUAGE NoFieldSelectors #-}
-
--- |
--- Module      : Crypto.Secp256k1
--- License     : UNLICENSE
--- Maintainer  : Jean-Pierre Rupp <jprupp@protonmail.ch>
--- Stability   : experimental
--- Portability : POSIX
---
--- Crytpographic functions from Bitcoin’s secp256k1 library.
---
--- The API for this module may change at any time. This is an internal module only
--- exposed for hacking and experimentation.
 module Crypto.Secp256k1.Internal.Base where
 
 import Control.DeepSeq (NFData)
diff --git a/src/Crypto/Secp256k1/Internal/BaseOps.hs b/src/Crypto/Secp256k1/Internal/BaseOps.hs
--- a/src/Crypto/Secp256k1/Internal/BaseOps.hs
+++ b/src/Crypto/Secp256k1/Internal/BaseOps.hs
@@ -1,12 +1,3 @@
--- |
--- Module      : Crypto.Secp256k1.Internal.BaseOps
--- License     : UNLICENSE
--- Maintainer  : Jean-Pierre Rupp <jprupp@protonmail.ch>
--- Stability   : experimental
--- Portability : POSIX
---
--- The API for this module may change at any time. This is an internal module only
--- exposed for hacking and experimentation.
 module Crypto.Secp256k1.Internal.BaseOps where
 
 import Crypto.Secp256k1.Internal.ForeignTypes
diff --git a/src/Crypto/Secp256k1/Internal/Context.hs b/src/Crypto/Secp256k1/Internal/Context.hs
--- a/src/Crypto/Secp256k1/Internal/Context.hs
+++ b/src/Crypto/Secp256k1/Internal/Context.hs
@@ -1,14 +1,4 @@
 {-# LANGUAGE NoFieldSelectors #-}
-
--- |
--- Module      : Crypto.Secp256k1.Internal.Context
--- License     : UNLICENSE
--- Maintainer  : Jean-Pierre Rupp <jprupp@protonmail.ch>
--- Stability   : experimental
--- Portability : POSIX
---
--- The API for this module may change at any time. This is an internal module only
--- exposed for hacking and experimentation.
 module Crypto.Secp256k1.Internal.Context where
 
 import Control.Exception (bracket, mask_)
diff --git a/src/Crypto/Secp256k1/Internal/ForeignTypes.hs b/src/Crypto/Secp256k1/Internal/ForeignTypes.hs
--- a/src/Crypto/Secp256k1/Internal/ForeignTypes.hs
+++ b/src/Crypto/Secp256k1/Internal/ForeignTypes.hs
@@ -1,12 +1,3 @@
--- |
--- Module      : Crypto.Secp256k1.Internal.ForeignTypes
--- License     : UNLICENSE
--- Maintainer  : Jean-Pierre Rupp <jprupp@protonmail.ch>
--- Stability   : experimental
--- Portability : POSIX
---
--- The API for this module may change at any time. This is an internal module only
--- exposed for hacking and experimentation.
 module Crypto.Secp256k1.Internal.ForeignTypes where
 
 import Foreign (Ptr)
diff --git a/src/Crypto/Secp256k1/Internal/Util.hs b/src/Crypto/Secp256k1/Internal/Util.hs
--- a/src/Crypto/Secp256k1/Internal/Util.hs
+++ b/src/Crypto/Secp256k1/Internal/Util.hs
@@ -1,14 +1,4 @@
 {-# LANGUAGE FlexibleContexts #-}
-
--- |
--- Module      : Crypto.Secp256k1.Internal.Util
--- License     : UNLICENSE
--- Maintainer  : Jean-Pierre Rupp <jprupp@protonmail.ch>
--- Stability   : experimental
--- Portability : POSIX
---
--- The API for this module may change at any time. This is an internal module only
--- exposed for hacking and experimentation.
 module Crypto.Secp256k1.Internal.Util where
 
 import Crypto.Secp256k1.Internal.ForeignTypes (Seed32)
