diff --git a/CHANGELOG.txt b/CHANGELOG.txt
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,3 +1,7 @@
+0.14.2
+------
+- Export `PrepareStrategy` from `Database.CQL.IO`
+
 0.14.1
 ------
 - Support for prepared queries
diff --git a/cql-io.cabal b/cql-io.cabal
--- a/cql-io.cabal
+++ b/cql-io.cabal
@@ -1,5 +1,5 @@
 name:                 cql-io
-version:              0.14.1
+version:              0.14.2
 synopsis:             Cassandra CQL client.
 stability:            experimental
 license:              OtherLicense
@@ -35,6 +35,10 @@
     .
     * /Customisable retry settings/. Support for default retry settings as well
     as local overrides per query.
+    .
+    * /Prepared queries/. Prepared queries are an optimisation which parse
+    and prepare a query only once on Cassandra nodes but execute it many
+    times with different concrete values.
 
 source-repository head
     type:             git
diff --git a/src/Database/CQL/IO.hs b/src/Database/CQL/IO.hs
--- a/src/Database/CQL/IO.hs
+++ b/src/Database/CQL/IO.hs
@@ -55,6 +55,7 @@
 module Database.CQL.IO
     ( -- * Client settings
       Settings
+    , PrepareStrategy (..)
     , defSettings
     , addContact
     , setCompression
