diff --git a/Web/Routes/Generics.hs b/Web/Routes/Generics.hs
--- a/Web/Routes/Generics.hs
+++ b/Web/Routes/Generics.hs
@@ -7,11 +7,6 @@
 import Text.ParserCombinators.Parsec.Combinator
 import Web.Routes.PathInfo (PathInfo(fromPathSegments, toPathSegments), URLParser, segment)
 
-data Path
- = Foo
- | Bar Int Int
-   deriving (Show, Generic)
-
 class GToURL f where
   gtoPathSegments :: f a -> [Text]
   gfromPathSegments :: URLParser (f a)
@@ -50,7 +45,3 @@
 instance (GToURL f) => GToURL (S1 c f) where
   gtoPathSegments (M1 f) = gtoPathSegments f
   gfromPathSegments = M1 <$> gfromPathSegments
-
-instance PathInfo Path where
-  toPathSegments = gtoPathSegments . from
-  fromPathSegments = fmap to gfromPathSegments
diff --git a/web-routes-generics.cabal b/web-routes-generics.cabal
--- a/web-routes-generics.cabal
+++ b/web-routes-generics.cabal
@@ -1,5 +1,5 @@
 Name:             web-routes-generics
-Version:          0.1.0.0
+Version:          0.1.0.1
 License:          BSD3
 License-File:     LICENSE
 Author:           jeremy@seereason.com
