diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+### 0.1.0.1
+
+- Added forgotten Codec.Wavefront.
+
 # 0.1
 
 - Initial revision.
diff --git a/src/Codec/Wavefront.hs b/src/Codec/Wavefront.hs
new file mode 100644
--- /dev/null
+++ b/src/Codec/Wavefront.hs
@@ -0,0 +1,20 @@
+-----------------------------------------------------------------------------
+-- |
+-- Copyright   : (C) 2015 Dimitri Sabadie
+-- License     : BSD3
+--
+-- Maintainer  : Dimitri Sabadie <dimitri.sabadie@gmail.com>
+-- Stability   : experimental
+-- Portability : portable
+--
+-- Currently, you can parse a file and get a 'WavefrontOBJ' with the 'fromFile'
+-- function.
+-----------------------------------------------------------------------------
+
+module Codec.Wavefront (
+    module Codec.Wavefront.Object
+  , module Codec.Wavefront.IO
+  ) where
+
+import Codec.Wavefront.Object
+import Codec.Wavefront.IO
diff --git a/wavefront.cabal b/wavefront.cabal
--- a/wavefront.cabal
+++ b/wavefront.cabal
@@ -1,5 +1,5 @@
 name:                wavefront
-version:             0.1
+version:             0.1.0.1
 synopsis:            Wavefront OBJ loader
 description:         A Wavefront OBJ loader. Currently supports polygonal information. More could
                      be added if needed (like curves and surface) if people contribute. Feel free
@@ -15,7 +15,7 @@
 category:            Codec
 build-type:          Simple
 extra-source-files:  CHANGELOG.md
-cabal-version:       >=1.10
+cabal-version:       >= 1.10
 
 source-repository head
   type:     git
@@ -24,7 +24,8 @@
 library
   ghc-options:         -W -Wall
 
-  exposed-modules:     Codec.Wavefront.Face
+  exposed-modules:     Codec.Wavefront
+                     , Codec.Wavefront.Face
                      , Codec.Wavefront.IO
                      , Codec.Wavefront.Line
                      , Codec.Wavefront.Location
