diff --git a/AUTHORS b/AUTHORS
--- a/AUTHORS
+++ b/AUTHORS
@@ -3,7 +3,7 @@
 
 Austin Seipp
 Alexander Thiemann
-Jean-Pierre Rupp
+JP Rupp
 Kim Altintop
 Michael Lazarev
 Nicolas Trangez
diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 2.1.7
+
+ * Simplify author name.
+
 ## 2.1.6
 
  * Refactor memory use further.
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
 Copyright (c) 2011, Kim Altintop
 Copyright (c) 2014, Alexander Thiemann
-Copyright (c) 2020, Jean-Pierre Rupp
+Copyright (c) 2025, JP Rupp
 
 All rights reserved.
 
diff --git a/rocksdb-haskell-jprupp.cabal b/rocksdb-haskell-jprupp.cabal
--- a/rocksdb-haskell-jprupp.cabal
+++ b/rocksdb-haskell-jprupp.cabal
@@ -1,19 +1,19 @@
 cabal-version: 1.12
 
--- This file has been generated from package.yaml by hpack version 0.35.2.
+-- This file has been generated from package.yaml by hpack version 0.38.0.
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 980f107d02562d992868728e11392b8fdba57955009c1531d95928a54247f8de
+-- hash: bd91a467d6bd847de202b5a719feec0870396e6f5dcdb305c82ef81b2dbe33be
 
 name:           rocksdb-haskell-jprupp
-version:        2.1.6
+version:        2.1.7
 synopsis:       Haskell bindings for RocksDB
 description:    See README at <https://github.com/jprupp/rocksdb-haskell#readme>
 category:       Database, FFI
 homepage:       https://github.com/jprupp/rocksdb-haskell#readme
 bug-reports:    https://github.com/jprupp/rocksdb-haskell/issues
-maintainer:     Jean-Pierre Rupp <jprupp@protonmail.ch>
+maintainer:     JP Rupp <jprupp@protonmail.ch>
 license:        BSD3
 license-file:   LICENSE
 build-type:     Simple
diff --git a/src/Database/RocksDB.hs b/src/Database/RocksDB.hs
--- a/src/Database/RocksDB.hs
+++ b/src/Database/RocksDB.hs
@@ -1,17 +1,3 @@
--- |
--- Module      : Database.RocksDB
--- Copyright   : (c) 2012-2013 The leveldb-haskell Authors
---               (c) 2014 The rocksdb-haskell Authors
---               (c) 2020 Jean-Pierre Rupp
--- License     : BSD3
--- Maintainer  : jprupp@protonmail.ch
--- Stability   : experimental
--- Portability : non-portable
---
--- RocksDB Haskell binding.
---
--- The API closely follows the C-API of RocksDB.
-
 module Database.RocksDB (module Base) where
 
 import Database.RocksDB.Base as Base
diff --git a/src/Database/RocksDB/Base.hs b/src/Database/RocksDB/Base.hs
--- a/src/Database/RocksDB/Base.hs
+++ b/src/Database/RocksDB/Base.hs
@@ -72,7 +72,8 @@
 
 -- | Open a database.
 --
--- The returned handle should be released with 'close'.
+-- The returned handle will be automatically released with 'close'
+-- when the function exits.
 withDB :: MonadUnliftIO m => FilePath -> Config -> (DB -> m a) -> m a
 withDB path config f =
     withOptions config $ \opts_ptr ->
