diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,19 +1,25 @@
 # Changelog for gloss-export
 
+## 0.1.0.3
+Version bump  
+removal of misleading comment in documentation
+
+contributers: Samuel Gélineau
+
 ## 0.1.0.2
-Error handling (throws error now, formerly stdout)
-Unified approach for RGBA,RGBA8
-Image is flipped by OpenGL now
+Error handling (throws error now, formerly stdout)  
+Unified approach for RGBA,RGBA8  
+Image is flipped by OpenGL now  
 easier to compile on macOS, still works on linux
 
 contributers: Samuel Gélineau
 
 
 ## 0.1.0.1
-window no longer displayed when exporting
+window no longer displayed when exporting  
 added testsuite
 
 contributers: Samuel Gélineau
 
 ## 0.1.0.0
-Initial version	
+Initial version
diff --git a/gloss-export.cabal b/gloss-export.cabal
--- a/gloss-export.cabal
+++ b/gloss-export.cabal
@@ -1,5 +1,5 @@
 name:           gloss-export
-version:        0.1.0.2
+version:        0.1.0.3
 Synopsis:       Export Gloss pictures to png, bmp, tga, tiff, gif and juicy-pixels-image
 description:    Please see the README on GitLab at <https://gitlab.com/timo-a/gloss-export#readme>
 homepage:       https://gitlab.com/timo-a/gloss-export#readme
@@ -29,13 +29,13 @@
     -- the lower/upper bounds. No idea about versions inbetween.
 
       base >=4.7 && <5
-    , gloss-rendering   >= 1.9.3.1  && <= 1.13.0.2
-    , GLFW-b            >= 1.0.0    && <= 3.2.1.1
-    , OpenGLRaw         <= 3.3.1.0
+    , gloss-rendering   >= 1.9.3.1  && <= 1.13.1.1
+    , GLFW-b            >= 1.0.0    && <= 3.3.0.0
+    , OpenGLRaw                        <= 3.3.4.0
     -- I can't see where the respective functions come from... it works with the upper bound
-    , JuicyPixels       >= 3.2      && <= 3.3.1
-    , vector            >= 0.9.1    && <= 0.12.0.1
-    , GLUT              >= 2.1.2.0  && <= 2.7.0.14
+    , JuicyPixels       >= 3.2      && <= 3.3.5
+    , vector            >= 0.9.1    && <= 0.12.1.2
+    , GLUT              >= 2.1.2.0  && <= 2.7.0.15
   exposed-modules:
       Graphics.Gloss.Export
     , Graphics.Gloss.Export.Image
diff --git a/src/Graphics/Gloss/Export.hs b/src/Graphics/Gloss/Export.hs
--- a/src/Graphics/Gloss/Export.hs
+++ b/src/Graphics/Gloss/Export.hs
@@ -1,5 +1,4 @@
 -- | Main module for exporting gloss pictures to image files, gif animations and juicy-pixels image datatypes
---   The canvas seems limited to  (1853,1025) beyond that it's transparent
 
 module Graphics.Gloss.Export
     (
