diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -22,9 +22,9 @@
 main :: IO ()
 main = do
   let config = Config
-        { forwardLogs = True
-        , distro = Distro16  -- PostgreSQL 16
-        , auth = TrustAuth   -- Trust-based authentication
+        { tagName = "postgres:16" -- PostgreSQL 16.
+        , auth = TrustAuth        -- Authentication method that allows connections without a password.
+        , forwardLogs = True      -- Forward container logs to console. Useful for debugging.
         }
 
   run config $ \(host, port) -> do
diff --git a/testcontainers-postgresql.cabal b/testcontainers-postgresql.cabal
--- a/testcontainers-postgresql.cabal
+++ b/testcontainers-postgresql.cabal
@@ -1,6 +1,6 @@
 cabal-version: 3.0
 name: testcontainers-postgresql
-version: 0.2
+version: 0.2.0.1
 category: PostgreSQL, Codecs
 synopsis: Testcontainers integration for PostgreSQL
 homepage: https://github.com/nikita-volkov/testcontainers-postgresql
