diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,18 @@
 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.5] - 2025-05-09
+
+### Removed
+
+- Removed unnecessary file boilerplate.
+
+## [1.4.4] - 2025-05-09
+
+### Changed
+
+- Simplify author name.
+
 ## [1.4.3] - 2025-05-08
 
 ### Changed
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.4
+version:        1.4.5
 synopsis:       Bindings for secp256k1
 description:    Sign and verify signatures using the secp256k1 library.
 category:       Crypto
@@ -13,7 +13,6 @@
 bug-reports:    https://github.com/jprupp/secp256k1-haskell/issues
 author:         JP Rupp
 maintainer:     jprupp@protonmail.ch
-copyright:      (c) 2017 JP Rupp
 license:        MIT
 license-file:   LICENSE
 build-type:     Simple
diff --git a/src/Crypto/Secp256k1.hs b/src/Crypto/Secp256k1.hs
--- a/src/Crypto/Secp256k1.hs
+++ b/src/Crypto/Secp256k1.hs
@@ -1,12 +1,4 @@
 {-# LANGUAGE DuplicateRecordFields #-}
--- |
--- Module      : Crypto.Secp256k1
--- License     : UNLICENSE
--- Maintainer  : Jean-Pierre Rupp <jprupp@protonmail.ch>
--- Stability   : experimental
--- Portability : POSIX
---
--- Crytpographic functions from Bitcoin’s secp256k1 library.
 module Crypto.Secp256k1
   ( -- * Context
     Ctx (..),
