diff --git a/WrapPaths.hs b/WrapPaths.hs
new file mode 100644
--- /dev/null
+++ b/WrapPaths.hs
@@ -0,0 +1,9 @@
+module WrapPaths (wrapGetDataFileName, wrapVersion) where
+import Data.Version
+import Paths_carettah (getDataFileName, version)
+
+wrapGetDataFileName :: FilePath -> IO FilePath
+wrapGetDataFileName = getDataFileName
+
+wrapVersion :: Version
+wrapVersion = version
diff --git a/carettah.cabal b/carettah.cabal
--- a/carettah.cabal
+++ b/carettah.cabal
@@ -1,5 +1,5 @@
 Name:                   carettah
-Version:                0.0.3
+Version:                0.0.4
 Author:                 Kiwamu Okabe <kiwamu@debian.or.jp>
 Maintainer:             Kiwamu Okabe <kiwamu@debian.or.jp>
 License:                GPL-2
@@ -27,7 +27,7 @@
                         cairo,
                         uglymemo,
                         hcwiid
-  other-modules:        Paths_carettah Config Render
+  other-modules:        Paths_carettah Config Render WrapPaths
   ghc-options:          -Wall
   ghc-prof-options:     -auto-all -caf-all
 
