diff --git a/Storage/Hashed/AnchoredPath.hs b/Storage/Hashed/AnchoredPath.hs
--- a/Storage/Hashed/AnchoredPath.hs
+++ b/Storage/Hashed/AnchoredPath.hs
@@ -49,7 +49,7 @@
 
 -- | List all parents of a given path. foo/bar/baz -> [foo, foo/bar]
 parents :: AnchoredPath -> [AnchoredPath]
-parents (AnchoredPath x) = map AnchoredPath . inits . init $ x
+parents (AnchoredPath x) = map AnchoredPath . init . inits $ x
 
 -- | Take a "root" directory and an anchored path and produce a full
 -- 'FilePath'. Moreover, you can use @anchorPath \"\"@ to get a relative
diff --git a/hashed-storage.cabal b/hashed-storage.cabal
--- a/hashed-storage.cabal
+++ b/hashed-storage.cabal
@@ -1,5 +1,5 @@
 name:          hashed-storage
-version:       0.3.3
+version:       0.3.3.1
 synopsis:      Hashed file storage support code.
 
 description:   Support code for reading and manipulating hashed file storage
