diff --git a/Geo/GPX/Conduit.hs b/Geo/GPX/Conduit.hs
--- a/Geo/GPX/Conduit.hs
+++ b/Geo/GPX/Conduit.hs
@@ -119,8 +119,7 @@
                 case nameLocalName n of
                         "ele"   -> Just (\p t -> p { pntEle = Just (parseDouble t) })
                         "time"  -> Just (\p t -> p { pntTime = (parseUTC t) })
-                        "speed" -> Just (\p _ -> p ) -- We ignore 'speed'
-                        _ -> Nothing
+                        _       -> Just const -- ignore everything else
             handleName :: (MonadThrow m) => pnt -> (pnt -> Text -> pnt) -> Sink Event m pnt
             handleName p op = fmap (op p) content
         skipTagAndContents "extensions"
diff --git a/gpx-conduit.cabal b/gpx-conduit.cabal
--- a/gpx-conduit.cabal
+++ b/gpx-conduit.cabal
@@ -2,7 +2,7 @@
 -- options, see
 -- http://www.haskell.org/cabal/release/cabal-latest/doc/users-guide/authors.html#pkg-descr.
 Name:                gpx-conduit
-Version:             0.1
+Version:             0.1.1
 Synopsis:            Read GPX files using conduits
 Description:         Read GPX files into simple Point types.
 License:             BSD3
