diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@
 
 
 `plot-light` provides functionality for rendering 2D graphics. It is geared in particular towards scientific plotting, and it is called "light" because it only requires a few common Haskell dependencies.
-It builds upon `blaze-svg` and `JuicyPixels` by adding type-safe combinators, geometry primitives and high-level graphing functionality.
+It builds upon `blaze-svg` by adding type-safe combinators, geometry primitives and high-level graphing functionality.
 
 ## Usage
 
diff --git a/plot-light.cabal b/plot-light.cabal
--- a/plot-light.cabal
+++ b/plot-light.cabal
@@ -1,5 +1,5 @@
 name:                plot-light
-version:             0.3.2
+version:             0.3.2.1
 synopsis:            A lightweight plotting library, exporting to SVG
 description:         This library provides drawing and plotting datastructures and functions; it is aimed in particular at scientific visualization, but it also exposes its plotting primitives and a small but general purpose 2D geometry library.
                      
@@ -25,7 +25,7 @@
   hs-source-dirs:      src
   exposed-modules:     Graphics.Rendering.Plot.Light
                        Data.TimeSeries
-                       Graphics.Rendering.Plot.Light.PlotTypes
+                       Graphics.Rendering.Plot.Light.PlotTypes                       
                        Graphics.Rendering.Plot.Light.Internal.Geometry
   other-modules:       Graphics.Rendering.Plot.Light.Internal
                        Graphics.Rendering.Plot.Light.Internal.Layout
@@ -35,7 +35,6 @@
                        Graphics.Rendering.Plot.Light.PlotTypes.TimeSeries
                        Graphics.Rendering.Plot.Light.PlotTypes.TimeSeries.Candlestick
                        Graphics.Rendering.Plot.Light.Internal.Utils
-                       Data.Parsers
   build-depends:       base >= 4.7 && < 5
                      , blaze-svg
                      , colour
diff --git a/src/Data/Parsers.hs b/src/Data/Parsers.hs
deleted file mode 100644
--- a/src/Data/Parsers.hs
+++ /dev/null
@@ -1,6 +0,0 @@
-module Data.Parsers where
--- import qualified Data.Attoparsec.Text as A
-
--- space, comma :: A.Parser Char
--- space = A.char ' '
--- comma = A.char ','
diff --git a/src/Data/TimeSeries.hs b/src/Data/TimeSeries.hs
--- a/src/Data/TimeSeries.hs
+++ b/src/Data/TimeSeries.hs
@@ -22,7 +22,6 @@
     _val :: a
     } deriving (Eq, Show)
 
-
 tickToFractional :: Fractional b => TsPoint a -> b
 tickToFractional = fromRational . fromTick . _tick
 
diff --git a/src/Graphics/Rendering/Plot/Light/Internal/Geometry.hs b/src/Graphics/Rendering/Plot/Light/Internal/Geometry.hs
--- a/src/Graphics/Rendering/Plot/Light/Internal/Geometry.hs
+++ b/src/Graphics/Rendering/Plot/Light/Internal/Geometry.hs
@@ -9,7 +9,7 @@
   -- ** Point
   Point(..), mkPoint, setPointX, setPointY,
   -- ** LabeledPoint
-  LabeledPoint(..), mkLabeledPoint, labelPoint, moveLabeledPoint, mapLabel,
+  LabeledPoint(..), mkLabeledPoint, labelPoint, moveLabeledPoint, moveLabeledPointBwFrames, mapLabel,
   -- ** Frame
   Frame(..), mkFrame, frameFromPoints,  mkFrameOrigin, height, width, xmin, xmax, ymin, ymax, 
   -- ** Axis
