diff --git a/Clckwrks/Authenticate/API.hs b/Clckwrks/Authenticate/API.hs
--- a/Clckwrks/Authenticate/API.hs
+++ b/Clckwrks/Authenticate/API.hs
@@ -4,6 +4,7 @@
        , getEmail
        , getUser
        , getUsername
+       , insecureUpdateUser
        ) where
 
 import Clckwrks.Monad               (Clck, plugins)
diff --git a/Clckwrks/ProfileData/API.hs b/Clckwrks/ProfileData/API.hs
--- a/Clckwrks/ProfileData/API.hs
+++ b/Clckwrks/ProfileData/API.hs
@@ -1,6 +1,7 @@
 {-# LANGUAGE RecordWildCards, OverloadedStrings #-}
 module Clckwrks.ProfileData.API
-    ( getProfileData
+    ( getDisplayName
+    , getProfileData
     , getUserRoles
     , requiresRole
     , requiresRole_
diff --git a/Clckwrks/ProfileData/Acid.hs b/Clckwrks/ProfileData/Acid.hs
--- a/Clckwrks/ProfileData/Acid.hs
+++ b/Clckwrks/ProfileData/Acid.hs
@@ -5,6 +5,7 @@
     , SetProfileData(..)
     , GetProfileData(..)
     , NewProfileData(..)
+    , UpdateProfileData(..)
     , HasRole(..)
     , GetRoles(..)
     , AddRole(..)
@@ -114,6 +115,7 @@
   [ 'setProfileData
   , 'getProfileData
   , 'newProfileData
+  , 'updateProfileData
   , 'getRoles
   , 'hasRole
   , 'addRole
diff --git a/clckwrks.cabal b/clckwrks.cabal
--- a/clckwrks.cabal
+++ b/clckwrks.cabal
@@ -1,5 +1,5 @@
 Name:                clckwrks
-Version:             0.26.2.3
+Version:             0.26.3
 Synopsis:            A secure, reliable content management system (CMS) and blogging platform
 Description:         clckwrks (pronounced, clockworks) aims to compete
                      directly with popular PHP-based blogging and CMS
@@ -34,6 +34,7 @@
     default: True
 
 Library
+  GHC-Options: -Wunused-top-binds
   Build-tool-depends: hsx2hs:hsx2hs
   default-language: Haskell2010
   Exposed-modules: Clckwrks
