diff --git a/AVar.cabal b/AVar.cabal
--- a/AVar.cabal
+++ b/AVar.cabal
@@ -1,5 +1,5 @@
 Name:                   AVar
-Version:                0.0.5
+Version:                0.0.5.1
 Category:               Concurrency
 Synopsis:               Mutable variables with Exception handling and concurrency support.
 Description:            AVars emulate mutable variables, by providing a queue based
@@ -15,6 +15,7 @@
                         
                         New in this version:
                         * Fixed a (MASSIVE) mistake where i had forgotten to export the newAVar function.
+                        * Gave in and exported Data.AVar.Internal
 License:                BSD3
 License-file:           LICENSE.txt
 Author:                 Alex Mason
@@ -28,5 +29,5 @@
         Build-Depends:
                 base >= 4.0.0.0, base < 6.0.0.0
         Exposed-modules:
-                Data.AVar, Data.AVar.Unsafe
+                Data.AVar, Data.AVar.Unsafe, Data.AVar.Internal
 
diff --git a/Data/AVar/Internal.hs b/Data/AVar/Internal.hs
--- a/Data/AVar/Internal.hs
+++ b/Data/AVar/Internal.hs
@@ -7,7 +7,7 @@
     AVar(..),
     Transaction(..),
     -- * functions on AVars
-    newAVar,
+    newAVar
     ) where
 
 
