diff --git a/Data/List/NonEmptyZipper.hs b/Data/List/NonEmptyZipper.hs
--- a/Data/List/NonEmptyZipper.hs
+++ b/Data/List/NonEmptyZipper.hs
@@ -212,6 +212,12 @@
         foldr f (foldr f (foldr f i zs) [y]) xs
 
 
+-- | Its Traversable
+instance Traversable NonEmptyZipper where
+    traverse f (NonEmptyZipper xs y zs) =
+        NonEmptyZipper <$> traverse f xs <*> f y <*> traverse f zs
+
+
 -- | Set the current element in the NonEmptyZipper.
 -- If the element does not appear in the collection,
 -- the result with be @Nothing@
diff --git a/non-empty-zipper.cabal b/non-empty-zipper.cabal
--- a/non-empty-zipper.cabal
+++ b/non-empty-zipper.cabal
@@ -1,5 +1,5 @@
 name:                non-empty-zipper
-version:             0.1.0.6
+version:             0.1.0.7
 synopsis:            The Zipper for NonEmpty
 description:         The Zipper for NonEmpty. Useful for things like tabs,
                      button groups, and slideshows. Basically any case in which
