diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -16,3 +16,7 @@
 ## 0.1.0.3 -- 2023-07-25
 
 * Fixed bug with makeFrame function in Graphics.Gloss.Raster.Array.
+
+## 0.1.0.4 -- 2023-07-25
+
+* Removed extraneous print statement in makeFrame function in Graphics.Gloss.Raster.Array.
diff --git a/gloss-raster-massiv.cabal b/gloss-raster-massiv.cabal
--- a/gloss-raster-massiv.cabal
+++ b/gloss-raster-massiv.cabal
@@ -20,7 +20,7 @@
 -- PVP summary:     +-+------- breaking API changes
 --                  | | +----- non-breaking API additions
 --                  | | | +--- code changes with no API change
-version:            0.1.0.3
+version:            0.1.0.4
 
 -- A short (one-line) description of the package.
 synopsis:           Massiv-based alternative for gloss-raster
diff --git a/src/Graphics/Gloss/Raster/Array.hs b/src/Graphics/Gloss/Raster/Array.hs
--- a/src/Graphics/Gloss/Raster/Array.hs
+++ b/src/Graphics/Gloss/Raster/Array.hs
@@ -203,8 +203,6 @@
                         arrRGBCFP       -- the image data.
                         False           -- don't cache this in texture memory.
 
-        _ <- print "picture success"
-
         return picture
 {-# INLINE makeFrame #-}
 
