diff --git a/CTRex.cabal b/CTRex.cabal
--- a/CTRex.cabal
+++ b/CTRex.cabal
@@ -1,5 +1,5 @@
 Name:                CTRex
-Version:             0.5
+Version:             0.6
 Synopsis:	     Open records using closed type families.
 Description:          Open records using closed type families.
 License:             BSD3
@@ -13,10 +13,32 @@
 Category:            Data, Data Structures
 Tested-With:         GHC==7.8.2
 Library
-  Build-Depends: base >= 2 && <= 6, unordered-containers >= 0.2, hashable >= 1.2, mtl >= 1.0
+  Build-Depends: base >= 2 && < 6,
+                 containers,
+                 hashable >= 1.2,
+                 mtl >= 1.0,
+                 unordered-containers >= 0.2
   Exposed-modules: Data.OpenRecords
-  other-modules:   
-  Extensions:	 TypeOperators, ScopedTypeVariables,GADTs, KindSignatures, MultiParamTypeClasses, FlexibleInstances, FlexibleContexts, TypeFamilies, ViewPatterns, DataKinds, ConstraintKinds, UndecidableInstances,FunctionalDependencies,RankNTypes,AllowAmbiguousTypes, InstanceSigs, PolyKinds 
+  other-modules:
+  Extensions: AllowAmbiguousTypes,
+              ConstraintKinds,
+              DataKinds,
+              EmptyDataDecls,
+              FlexibleContexts,
+              FlexibleInstances,
+              FunctionalDependencies,
+              GADTs,
+              InstanceSigs,
+              KindSignatures,
+              MultiParamTypeClasses,
+              PatternGuards,
+              PolyKinds,
+              RankNTypes,
+              ScopedTypeVariables,
+              TypeFamilies,
+              TypeOperators,
+              ViewPatterns,
+              UndecidableInstances
 
 source-repository head
     type:     git
diff --git a/ChangeLog b/ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,1 +1,3 @@
+0.6: Small fix to cabal file by trofi
+
 0.5 : Initial version
