diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.1.3
+
+- Added support for GHC 7.10.1 and lower base.
+
 ## 0.1.2
 
 - Everything runs in `(MonadIO m) => m a` instead of `IO a` now on.
diff --git a/al.cabal b/al.cabal
--- a/al.cabal
+++ b/al.cabal
@@ -1,5 +1,5 @@
 name:                al
-version:             0.1.2
+version:             0.1.3
 synopsis:            OpenAL 1.1 raw API.
 description:         OpenAL is a minimalistic sound API that aims to provide
                      bare features for /spacialized audio/. The API looks like
@@ -39,7 +39,7 @@
   location: git://github.com/phaazon/al.git
 
 flag stdcall {
-  description: Use the @stdcall@ call convention
+  description: Use the stdcall call convention
   default: False
 }
 
@@ -87,8 +87,8 @@
   default-extensions:  CPP
                      , ForeignFunctionInterface
 
-  build-depends:       base >= 4.7 && < 4.8
-                     , mtl >= 2.1 && < 2.2
+  build-depends:       base >= 4.6 && < 5
+                     , mtl >= 2.1 && < 2.3
 
   hs-source-dirs:      src
 
