diff --git a/Graphics/Gloss/Accelerate/Data/Point.hs b/Graphics/Gloss/Accelerate/Data/Point.hs
--- a/Graphics/Gloss/Accelerate/Data/Point.hs
+++ b/Graphics/Gloss/Accelerate/Data/Point.hs
@@ -63,7 +63,7 @@
   signum (XY x y)                       = XY (signum x) (signum y)
   abs (XY x y)                          = XY (abs x) (abs y)
   negate (XY x y)                       = XY (negate x) (negate y)
-  fromInteger i                         = let f = fromInteger i
+  fromInteger i                         = let f = P.fromInteger i
                                           in  XY f f
 
 -- Represent points in Accelerate as a tuple
diff --git a/README.md b/README.md
new file mode 100644
--- /dev/null
+++ b/README.md
@@ -0,0 +1,12 @@
+gloss-accelerate
+================
+
+[![Build Status](https://travis-ci.org/tmcdonell/gloss-accelerate.svg)](https://travis-ci.org/tmcdonell/gloss-accelerate)
+[![Hackage](https://img.shields.io/hackage/v/gloss-accelerate.svg)](https://hackage.haskell.org/package/gloss-accelerate)
+
+Extras to help interface [gloss][gloss] and [accelerate][accelerate]. Refer to
+the main repositories of each project for more information.
+
+  [gloss]:      https://github.com/benl23x5/gloss
+  [accelerate]: https://github.com/AccelerateHS/accelerate
+
diff --git a/gloss-accelerate.cabal b/gloss-accelerate.cabal
--- a/gloss-accelerate.cabal
+++ b/gloss-accelerate.cabal
@@ -1,5 +1,5 @@
 Name:                   gloss-accelerate
-Version:                2.0.0.0
+Version:                2.0.0.1
 Synopsis:               Extras to interface Gloss and Accelerate
 Description:            Extras to interface Gloss and Accelerate
 License:                BSD3
@@ -10,19 +10,23 @@
 Build-type:             Simple
 Cabal-version:          >=1.10
 
+extra-source-files:
+    README.md
+
 Library
   Exposed-modules:
         Graphics.Gloss.Accelerate.Data.Picture
         Graphics.Gloss.Accelerate.Data.Point
 
   Build-depends:
-        base                    >= 4.6 && < 4.10
+        base                    >= 4.6 && < 4.12
       , accelerate              >= 0.16
       , gloss                   >= 1.9
       , gloss-rendering         >= 1.9
 
   ghc-options:
-        -Wall -O2
+        -Wall
+        -O2
 
   default-language:
         Haskell2010
@@ -33,7 +37,7 @@
 
 source-repository this
   type:                         git
-  tag:                          v2.0.0.0
+  tag:                          v2.0.0.1
   location:                     https://github.com/tmcdonell/gloss-accelerate
 
 -- vim: nospell
