diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,2 +1,5 @@
+# strict-mutable-base-1.1.0.0 (2024-09-04)
+* Rename `getChanContents'` to `getChan'Contents` for consistency.
+
 # strict-mutable-base-1.0.0.0 (2024-09-02)
 * Initial release.
diff --git a/src/Control/Concurrent/Chan/Strict.hs b/src/Control/Concurrent/Chan/Strict.hs
--- a/src/Control/Concurrent/Chan/Strict.hs
+++ b/src/Control/Concurrent/Chan/Strict.hs
@@ -7,7 +7,7 @@
   , writeChan'
   , readChan'
   , dupChan'
-  , getChanContents'
+  , getChan'Contents
   , writeList2Chan'
   ) where
 
@@ -37,8 +37,8 @@
 dupChan' (Chan' chan) = Chan' <$> Base.dupChan chan
 
 -- | 'Base.getChanContents' for 'Chan''.
-getChanContents' :: Chan' a -> IO [a]
-getChanContents' (Chan' chan) = Base.getChanContents chan
+getChan'Contents :: Chan' a -> IO [a]
+getChan'Contents (Chan' chan) = Base.getChanContents chan
 
 -- | 'Base.writeList2Chan' for 'Chan''.
 --
diff --git a/strict-mutable-base.cabal b/strict-mutable-base.cabal
--- a/strict-mutable-base.cabal
+++ b/strict-mutable-base.cabal
@@ -1,7 +1,7 @@
 cabal-version:      3.0
 build-type:         Simple
 name:               strict-mutable-base
-version:            1.0.0.0
+version:            1.1.0.0
 homepage:           https://github.com/arybczak/strict-mutable
 license:            BSD-3-Clause
 license-file:       LICENSE
@@ -9,7 +9,7 @@
 maintainer:         andrzej@rybczak.net
 author:             Andrzej Rybczak
 
-synopsis: Strict variants of mutable data types from @base@.
+synopsis: Strict variants of mutable data types from base.
 
 description: Strict (WHNF) variants of @Chan@, @IORef@ and @MVar@ for proactive
              prevention of space leaks.
